/* ===== 红包模块样式 ===== */

/* ===== 发送弹窗 ===== */

#ls-redbag-send-modal .ls-modal-content {
    background: transparent;
    box-shadow: none;
    border-radius: 16px;
    overflow: hidden;
}
#ls-redbag-send-modal .ls-modal-header { display: none !important; }
#ls-redbag-send-modal .ls-modal-body {
    padding: 0;
    overflow: visible;
    background: transparent;
}

.ls-redbag-send {
    padding: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,0.16);
}

/* 关闭按钮 */
.ls-redbag-send .ls-redbag-send-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 28px;
    height: 28px;
    border: none;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    z-index: 2;
    backdrop-filter: blur(6px);
}
.ls-redbag-send .ls-redbag-send-close:hover {
    background: rgba(255,255,255,0.28);
    color: #fff;
    transform: rotate(90deg);
}

/* 头部 — 紧凑横向布局 */
.ls-redbag-send .ls-redbag-send-header {
    background: linear-gradient(135deg, #E84040 0%, #CF1322 100%);
    padding: 16px 20px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
}
.ls-redbag-send .ls-redbag-send-header::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(255,215,0,0.1) 0%, transparent 70%);
    pointer-events: none;
}
.ls-redbag-send .ls-redbag-send-header-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}
.ls-redbag-send .ls-redbag-send-header-icon i {
    font-size: 22px;
    color: #FFD700;
    filter: drop-shadow(0 1px 3px rgba(0,0,0,0.12));
}
.ls-redbag-send .ls-redbag-send-header-text {
    position: relative;
}
.ls-redbag-send .ls-redbag-send-header h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 1.3;
}
.ls-redbag-send .ls-redbag-send-header p {
    margin: 2px 0 0;
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    line-height: 1.3;
}

/* 表单区域 */
.ls-redbag-send .ls-redbag-form {
    padding: 4px 20px 0;
    background: var(--ls-card-bg, #fff);
}
.ls-redbag-send .ls-redbag-form-row {
    display: flex;
    align-items: center;
    padding: 13px 0;
    border-bottom: 1px solid var(--ls-border, #f0f0f0);
}
.ls-redbag-send .ls-redbag-form-row-last { border-bottom: none; }
.ls-redbag-send .ls-redbag-form-row label {
    width: 88px;
    font-size: 13px;
    color: var(--lsc-text, #333);
    flex-shrink: 0;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}
.ls-redbag-send .ls-redbag-form-row label i {
    font-size: 15px;
    color: var(--lsc-text-secondary, #999);
}
.ls-redbag-send .ls-redbag-form-row input[type="number"],
.ls-redbag-send .ls-redbag-form-row input[type="text"],
.ls-redbag-send .ls-redbag-form-row select {
    flex: 1;
    height: 34px;
    padding: 0 10px;
    border: none;
    font-size: 14px;
    outline: none;
    background: transparent;
    color: var(--lsc-text, #333);
    text-align: right;
}
.ls-redbag-send .ls-redbag-form-row input:focus {
    background: var(--ls-bg-secondary, #fafafa);
    border-radius: 8px;
}
.ls-redbag-send .ls-redbag-form-row input::placeholder {
    color: var(--lsc-text-tertiary, #bbb);
}

/* select 美化（专属用户选择等保留） */
.ls-redbag-send .ls-redbag-form-row select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: var(--ls-bg-secondary, #f7f7f7) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23999'/%3E%3C/svg%3E") no-repeat right 10px center;
    background-size: 10px 6px;
    padding-right: 26px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.15s;
}
.ls-redbag-send .ls-redbag-form-row select:hover {
    background-color: var(--ls-bg-tertiary, #f0f0f0);
}
.ls-redbag-send .ls-redbag-form-row select:focus {
    box-shadow: 0 0 0 2px rgba(232,64,64,0.1);
}

/* 红包类型描述 */
.ls-redbag-type-desc {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0 20px 10px;
    margin-top: -4px;
    font-size: 12px;
    color: var(--lsc-text-tertiary, #aaa);
    line-height: 1;
    background: var(--ls-card-bg, #fff);
}
.ls-redbag-type-desc i {
    font-size: 13px;
    color: var(--lsc-text-tertiary, #bbb);
}

/* 红包类型标签 */
.ls-redbag-send .ls-redbag-type-tabs {
    display: flex;
    gap: 6px;
    flex: 1;
    justify-content: flex-end;
}
.ls-redbag-send .ls-redbag-type-tab {
    padding: 4px 12px;
    border: 1px solid var(--ls-border, #e0e0e0);
    border-radius: 6px;
    background: transparent;
    color: var(--lsc-text-secondary, #666);
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}
.ls-redbag-send .ls-redbag-type-tab:hover {
    border-color: #f0a0a0;
    color: #E84040;
}
.ls-redbag-send .ls-redbag-type-tab.active {
    border-color: #E84040;
    color: #fff;
    background: linear-gradient(135deg, #FF4D4F, #CF1322);
    box-shadow: 0 2px 6px rgba(207,19,34,0.2);
}

/* 货币类型按钮组 */
.ls-redbag-send .ls-redbag-currency-tabs {
    display: flex;
    gap: 0;
    flex: 1;
    justify-content: flex-end;
    background: var(--ls-bg-secondary, #f5f5f5);
    border-radius: 8px;
    padding: 3px;
    max-width: 200px;
    margin-left: auto;
}
.ls-redbag-send .ls-redbag-currency-tab {
    flex: 1;
    height: 30px;
    border: none;
    border-radius: 6px;
    background: transparent;
    color: var(--lsc-text-secondary, #888);
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    padding: 0 12px;
}
.ls-redbag-send .ls-redbag-currency-tab:hover {
    color: var(--lsc-text, #333);
}
.ls-redbag-send .ls-redbag-currency-tab.active {
    background: #fff;
    color: #CF1322;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    font-weight: 600;
}

/* 金额汇总区域 */
.ls-redbag-send .ls-redbag-summary {
    text-align: center;
    padding: 22px 20px 14px;
    background: var(--ls-card-bg, #fff);
}
.ls-redbag-send .ls-redbag-total-wrap {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}
.ls-redbag-send .ls-redbag-total {
    font-size: 44px;
    font-weight: 300;
    color: #CF1322;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}
.ls-redbag-send .ls-redbag-total-unit {
    font-size: 13px;
    color: var(--lsc-text-secondary, #666);
}
.ls-redbag-send .ls-redbag-fee {
    font-size: 12px;
    color: var(--lsc-text-tertiary, #999);
    margin-top: 6px;
}
.ls-redbag-send .ls-redbag-balance-info {
    font-size: 12px;
    color: var(--lsc-text-tertiary, #aaa);
    margin-top: 4px;
}

/* 提交按钮 */
.ls-redbag-send .ls-redbag-submit-wrap {
    padding: 4px 20px 20px;
    background: var(--ls-card-bg, #fff);
    border-radius: 0 0 16px 16px;
}
.ls-redbag-send .ls-redbag-submit {
    width: 100%;
    height: 44px;
    border: none;
    border-radius: 22px;
    background: linear-gradient(135deg, #FF4D4F 0%, #CF1322 100%);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s;
    letter-spacing: 1px;
    box-shadow: 0 4px 14px rgba(207,19,34,0.28);
}
.ls-redbag-send .ls-redbag-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(207,19,34,0.32);
}
.ls-redbag-send .ls-redbag-submit:active { transform: translateY(0); }
.ls-redbag-send .ls-redbag-submit:disabled {
    background: linear-gradient(135deg, #d4b0b0, #c4a0a0);
    box-shadow: none;
    cursor: not-allowed;
    transform: none;
}

/* ===== 领取/详情弹窗 ===== */

#ls-redbag-open-modal .ls-modal-content {
    background: transparent;
    box-shadow: none;
    overflow: visible;
}
#ls-redbag-open-modal .ls-modal-header { display: none !important; }
#ls-redbag-open-modal .ls-modal-body {
    padding: 0;
    overflow: visible;
    background: transparent;
}

.ls-redbag-open {
    width: 360px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 16px 48px rgba(0,0,0,0.2);
    border-radius: 16px;
    overflow: hidden;
}

/* 红包主体（红色区域） */
.ls-redbag-open .ls-redbag-envelope {
    background: linear-gradient(180deg, #E84040 0%, #CF1322 55%, #B91020 100%);
    border-radius: 16px 16px 0 0;
    padding: 40px 28px 44px;
    text-align: center;
    color: #fff;
    position: relative;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* 装饰 */
.ls-redbag-open .ls-redbag-deco {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}
.ls-redbag-open .ls-redbag-deco-circle {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 180px;
    background: radial-gradient(ellipse, rgba(255,215,0,0.08) 0%, transparent 70%);
}
.ls-redbag-open .ls-redbag-deco-circle-2 {
    top: auto;
    bottom: -30px;
    width: 180px;
    height: 100px;
    background: radial-gradient(ellipse, rgba(255,255,255,0.03) 0%, transparent 70%);
}

/* 底部弧形分割 */
.ls-redbag-open .ls-redbag-envelope::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 16px;
    background: var(--ls-card-bg, #fff);
    border-radius: 16px 16px 0 0;
}

/* 关闭按钮 */
.ls-redbag-open .ls-redbag-close-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    border: none;
    background: rgba(255,255,255,0.12);
    border-radius: 50%;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    z-index: 2;
    backdrop-filter: blur(6px);
}
.ls-redbag-open .ls-redbag-close-btn:hover {
    background: rgba(255,255,255,0.25);
    color: #fff;
    transform: rotate(90deg);
}

/* 发送者信息 */
.ls-redbag-open .ls-redbag-sender {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 16px;
    position: relative;
}
.ls-redbag-open .ls-redbag-sender img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.18);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.ls-redbag-open .ls-redbag-sender-name {
    font-size: 15px;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.ls-redbag-open .ls-redbag-sender-sub {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    margin-top: 3px;
    display: flex;
    align-items: center;
    gap: 3px;
}
.ls-redbag-open .ls-redbag-sender-sub i {
    font-size: 12px;
    color: #FFD700;
}

/* 祝福语 */
.ls-redbag-open .ls-redbag-greeting {
    font-size: 20px;
    margin: 2px 0 0;
    line-height: 1.5;
    font-weight: 400;
    letter-spacing: 0.5px;
    position: relative;
    max-width: 260px;
}

/* 红包类型标签 */
.ls-redbag-open .ls-redbag-type-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 12px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    font-size: 11px;
    color: rgba(255,255,255,0.65);
    margin-top: 8px;
    position: relative;
    backdrop-filter: blur(4px);
}
.ls-redbag-open .ls-redbag-type-badge i {
    font-size: 12px;
    color: rgba(255,215,0,0.6);
}

/* 開按钮 */
.ls-redbag-open .ls-redbag-open-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(180deg, #FFD54F 0%, #F5B83C 40%, #E8A020 100%);
    color: #8B2500;
    font-size: 30px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    margin-top: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.22), inset 0 2px 0 rgba(255,255,255,0.3);
    transition: all 0.2s;
    font-family: "SimSun", "STSong", serif;
    letter-spacing: 2px;
    position: relative;
}
.ls-redbag-open .ls-redbag-open-btn::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(255,215,0,0.25);
    animation: ls-redbag-pulse 2s ease-in-out infinite;
}
.ls-redbag-open .ls-redbag-open-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 24px rgba(0,0,0,0.28), inset 0 2px 0 rgba(255,255,255,0.3);
}
.ls-redbag-open .ls-redbag-open-btn:active { transform: scale(0.95); }

@keyframes ls-redbag-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.15); opacity: 0; }
}

/* 开按钮旋转动画 */
@keyframes ls-redbag-spin-open {
    0%   { transform: scale(1) rotate(0deg); }
    50%  { transform: scale(1.3) rotate(180deg); }
    100% { transform: scale(0) rotate(360deg); opacity: 0; }
}
.ls-redbag-open .ls-redbag-open-btn.ls-redbag-opening {
    animation: ls-redbag-spin-open 0.6s ease-in-out forwards;
    pointer-events: none;
}
.ls-redbag-open .ls-redbag-open-btn.ls-redbag-opening::before { display: none; }

/* 已领取金额 */
.ls-redbag-open .ls-redbag-result {
    margin-top: 20px;
    position: relative;
    animation: ls-redbag-amount-in 0.5s ease-out;
}
@keyframes ls-redbag-amount-in {
    0% { opacity: 0; transform: translateY(16px) scale(0.85); }
    60% { transform: translateY(-3px) scale(1.01); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}
.ls-redbag-open .ls-redbag-user-amount {
    font-size: 48px;
    font-weight: 300;
    color: #FFD54F;
    line-height: 1;
    text-shadow: 0 2px 6px rgba(0,0,0,0.1);
    font-variant-numeric: tabular-nums;
}
.ls-redbag-open .ls-redbag-user-amount-unit {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    margin-top: 6px;
}
.ls-redbag-open .ls-redbag-result-tip {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    margin-top: 6px;
}
.ls-redbag-open .ls-redbag-result-tip i {
    font-size: 12px;
    color: rgba(255,215,0,0.5);
}

/* 状态文字（不可领取时） */
.ls-redbag-open .ls-redbag-status-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    margin-top: 24px;
    position: relative;
}
.ls-redbag-open .ls-redbag-status-text i {
    font-size: 16px;
}

/* 底部详情区域（白色） */
.ls-redbag-open .ls-redbag-detail {
    background: var(--ls-card-bg, #fff);
    border-radius: 0 0 16px 16px;
    padding: 0 16px 10px;
    max-height: 280px;
    overflow-y: auto;
    text-align: left;
    margin-top: -1px;
    position: relative;
}
.ls-redbag-open .ls-redbag-detail::-webkit-scrollbar { width: 3px; }
.ls-redbag-open .ls-redbag-detail::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,0.06);
    border-radius: 2px;
}
.ls-redbag-open .ls-redbag-detail::-webkit-scrollbar-track { background: transparent; }

.ls-redbag-open .ls-redbag-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--ls-border, #f0f0f0);
    margin-bottom: 2px;
}
.ls-redbag-open .ls-redbag-stats-progress {
    font-size: 12px;
    color: var(--lsc-text-tertiary, #999);
}
.ls-redbag-open .ls-redbag-stats-sep {
    color: var(--lsc-text-tertiary, #ccc);
    margin: 0 1px;
}
.ls-redbag-open .ls-redbag-stats-type {
    padding: 2px 8px;
    background: var(--ls-bg-secondary, #f5f5f5);
    border-radius: 10px;
    font-size: 11px;
    color: var(--lsc-text-tertiary, #999);
}

.ls-redbag-open .ls-redbag-receive-item {
    display: flex;
    align-items: center;
    padding: 9px 4px;
    border-bottom: 1px solid var(--ls-border, #f7f7f7);
    border-radius: 8px;
    transition: background 0.15s;
}
.ls-redbag-open .ls-redbag-receive-item:last-child { border-bottom: none; }
.ls-redbag-open .ls-redbag-receive-item:hover {
    background: var(--ls-bg-secondary, #fafafa);
}
.ls-redbag-open .ls-redbag-receive-item img {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    margin-right: 10px;
    flex-shrink: 0;
}
.ls-redbag-open .ls-redbag-receive-info {
    flex: 1;
    min-width: 0;
}
.ls-redbag-open .ls-redbag-receive-name {
    font-size: 13px;
    color: var(--lsc-text, #333);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.ls-redbag-open .ls-redbag-receive-time {
    font-size: 11px;
    color: var(--lsc-text-tertiary, #aaa);
    margin-top: 2px;
}
.ls-redbag-open .ls-redbag-receive-amount {
    flex-shrink: 0;
    margin-left: 10px;
    text-align: right;
}
.ls-redbag-open .ls-redbag-receive-amount-num {
    font-size: 14px;
    color: var(--lsc-text, #333);
    font-weight: 500;
    font-variant-numeric: tabular-nums;
}
.ls-redbag-open .ls-redbag-best {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 2px;
    font-size: 10px;
    color: #E8A020;
    margin-top: 2px;
    font-weight: 500;
}
.ls-redbag-open .ls-redbag-best i {
    font-size: 11px;
}
/* 手气最佳行高亮 */
.ls-redbag-open .ls-redbag-best-item {
    background: linear-gradient(90deg, rgba(255,213,79,0.06) 0%, transparent 100%);
}

/* 无领取记录时的底部圆角 */
.ls-redbag-open .ls-redbag-envelope:last-child { border-radius: 16px; }
.ls-redbag-open .ls-redbag-envelope:last-child::after { display: none; }

/* 底部提示 */
.ls-redbag-open .ls-redbag-tips {
    font-size: 11px;
    color: var(--lsc-text-tertiary, #bbb);
    padding: 6px 16px 16px;
    text-align: center;
    background: var(--ls-card-bg, #fff);
    border-radius: 0 0 16px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-top: -1px;
    position: relative;
}
.ls-redbag-open .ls-redbag-tips i {
    font-size: 12px;
    color: var(--lsc-text-tertiary, #ccc);
}

/* ===== 信息流红包卡片 ===== */
.ls-post-redbag-card {
    display: flex;
    align-items: center;
    padding: 14px 16px 38px;
    background: linear-gradient(135deg, #FF4D4F 0%, #CF1322 100%);
    border-radius: 12px;
    margin: 10px 0;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.15s, box-shadow 0.15s;
    width: 60%;
}
.ls-post-redbag-card::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255,215,0,0.1) 0%, transparent 70%);
    pointer-events: none;
}
.ls-post-redbag-card::after {
    content: attr(data-type-text);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 26px;
    line-height: 26px;
    padding-right: 16px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.45);
    background: rgba(0, 0, 0, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: right;
}
.ls-post-redbag-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(207,19,34,0.25);
}
.ls-post-redbag-card:active { transform: scale(0.99); }
.ls-post-redbag-card .ls-redbag-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 12px;
}
.ls-post-redbag-card .ls-redbag-icon i {
    font-size: 32px;
    color: #FFD700;
    filter: drop-shadow(0 1px 3px rgba(0,0,0,0.12));
}
.ls-post-redbag-card .ls-redbag-card-info {
    flex: 1;
    min-width: 0;
}
.ls-post-redbag-card .ls-redbag-card-title {
    font-size: 14px;
    color: #fff;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.ls-post-redbag-card .ls-redbag-card-desc {
    font-size: 12px;
    color: rgba(255,255,255,0.55);
    margin-top: 3px;
}

/* 拆红包按钮 */
.ls-post-redbag-card .ls-redbag-card-action {
    flex-shrink: 0;
    margin-left: 12px;
}
.ls-post-redbag-card .ls-redbag-card-action span {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(180deg, #FFD54F 0%, #F5B83C 100%);
    color: #8B2500;
    font-size: 12px;
    font-weight: 600;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: transform 0.15s;
}
.ls-post-redbag-card:hover .ls-redbag-card-action span {
    transform: scale(1.05);
}
.ls-post-redbag-card .ls-redbag-card-action.received {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.18);
    border-radius: 50%;
}
.ls-post-redbag-card .ls-redbag-card-action.received i {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
}

/* 已领取状态 */
.ls-post-redbag-card.ls-redbag-received { opacity: 0.85; }

/* 已抢完/已过期/已退还 */
.ls-post-redbag-card.ls-redbag-disabled {
    background: linear-gradient(135deg, #D4807E 0%, #C06A68 100%);
    cursor: default;
}
.ls-post-redbag-card.ls-redbag-disabled:hover { transform: none; box-shadow: none; }
.ls-post-redbag-card.ls-redbag-disabled:active { transform: none; }
.ls-post-redbag-card.ls-redbag-disabled .ls-redbag-icon i { color: rgba(255,255,255,0.4); }
.ls-post-redbag-card.ls-redbag-disabled .ls-redbag-card-title { color: rgba(255,255,255,0.8); }

/* 已领取用户头像列表 */
.ls-redbag-card-receivers {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: 8px;
    padding: 0 2px;
}
.ls-redbag-card-receivers img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid var(--ls-card-bg, #fff);
    margin-left: -6px;
    object-fit: cover;
}
.ls-redbag-card-receivers img:first-child { margin-left: 0; }
.ls-redbag-card-receivers-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--ls-bg-secondary, #f0f0f0);
    font-size: 10px;
    color: var(--lsc-text-tertiary, #999);
    margin-left: -6px;
    border: 2px solid var(--ls-card-bg, #fff);
}
.ls-redbag-card-receivers-text {
    font-size: 11px;
    color: var(--lsc-text-tertiary, #aaa);
    margin-left: 6px;
}

/* ===== 系统消息红包图标 ===== */
.ls-chat-msg-system .ls-redbag-sys-icon {
    display: inline-block;
    margin-right: 3px;
    vertical-align: -1px;
    line-height: 1;
    background: none;
    padding: 0;
}
.ls-chat-msg-system .ls-redbag-sys-icon i {
    font-size: 14px;
    color: #FF4D4F;
}

/* ===== 聊天红包角标 ===== */
.ls-chat-msg-redbag .ls-redbag-corner-badge {
    position: absolute;
    top: 0;
    right: 0;
    padding: 2px 8px 2px 10px;
    background: rgba(0,0,0,0.18);
    border-radius: 0 4px 0 10px;
    font-size: 10px;
    color: rgba(255,255,255,0.85);
    line-height: 1.5;
    max-width: 140px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    backdrop-filter: blur(4px);
    z-index: 1;
}
.ls-chat-msg-redbag.ls-redbag-disabled .ls-redbag-corner-badge {
    background: rgba(0,0,0,0.1);
    color: rgba(255,255,255,0.5);
}

/* ===== 信息流红包类型（底栏显示） ===== */
