.lc-card {
    background: var(--bg-card, #fff);
    border-radius: 16px;
    padding: 18px 20px 16px;
    box-shadow: var(--shadow-sm, 0 2px 12px rgba(0,0,0,.06));
    margin-bottom: 16px;
}
.lc-header {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 16px;
}
.lc-icon {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.lc-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary, #1e293b);
    white-space: nowrap;
}
.lc-items {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.lc-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.lc-label {
    font-size: 13px;
    color: var(--text-secondary, #64748b);
}
.lc-label em {
    font-style: normal;
    font-weight: 700;
    color: #3b82f6;
}
.lc-bar-row {
    display: flex;
    align-items: center;
    gap: 8px;
}
.lc-pct {
    flex-shrink: 0;
    min-width: 36px;
    text-align: right;
    font-size: 13px;
    color: var(--text-tertiary, #94a3b8);
    white-space: nowrap;
}
.lc-bar-wrap {
    flex: 1;
    height: 10px;
    background: var(--border-primary, #f1f5f9);
    border-radius: 99px;
    overflow: hidden;
}
.lc-bar {
    height: 100%;
    border-radius: 99px;
    background-size: 20px 100%;
    transition: width .6s ease;
}
/* 今日 - 蓝色斜纹 */
.lc-bar--day {
    background-color: #38bdf8;
    background-image: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 4px,
        rgba(255,255,255,.35) 4px,
        rgba(255,255,255,.35) 8px
    );
}
/* 本周 - 黄橙色斜纹 */
.lc-bar--week {
    background-color: #f59e0b;
    background-image: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 4px,
        rgba(255,255,255,.35) 4px,
        rgba(255,255,255,.35) 8px
    );
}
/* 本月 - 粉红色斜纹 */
.lc-bar--month {
    background-color: #f87171;
    background-image: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 4px,
        rgba(255,255,255,.35) 4px,
        rgba(255,255,255,.35) 8px
    );
}
/* 今年 - 绿色斜纹 */
.lc-bar--year {
    background-color: #4ade80;
    background-image: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 4px,
        rgba(255,255,255,.35) 4px,
        rgba(255,255,255,.35) 8px
    );
}
/* 条纹流动动画 */
@keyframes lc-stripe-move {
    0%   { background-position: 0 0; }
    100% { background-position: 28px 0; }
}
/* 入场动画：从0增长到目标宽度 */
@keyframes lc-grow {
    from { width: 0; }
    to   { width: var(--lc-w, 0%); }
}
.lc-bar {
    animation: lc-stripe-move 1s linear infinite,
               lc-grow 1s cubic-bezier(.4,0,.2,1) both;
    background-size: 28px 100%;
}
