/* 智量资本 - 观察仓看板样式 */

/* ---- 观察仓卡片 ---- */
.watch-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid var(--border);
    transition: all 0.2s;
    cursor: pointer;
    position: relative;
}

.watch-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.watch-card .card-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.watch-card .watch-ticker {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
}

.watch-card .watch-name {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 1px;
}

.watch-card .watch-price {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.watch-card .watch-layer-badge {
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
}

.watch-card .watch-reason {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 8px;
}

/* 催化进度条 */
.watch-card .catalyst-progress {
    margin-top: 4px;
}

.watch-card .catalyst-progress .progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 3px;
}

.watch-card .catalyst-progress .progress-track {
    height: 4px;
    background: #e2e8f0;
    border-radius: 2px;
    overflow: hidden;
}

.watch-card .catalyst-progress .progress-fill {
    height: 100%;
    border-radius: 2px;
    transition: width 0.5s;
}

/* 底部标签区 */
.watch-card .watch-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.watch-card .watch-tag {
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 4px;
    background: #f1f5f9;
    color: #64748b;
    font-weight: 500;
}

.watch-card .watch-tag.urgent {
    background: #fef2f2;
    color: #dc2626;
}

.watch-card .watch-tag.active {
    background: #dcfce7;
    color: #16a34a;
}

.watch-card .watch-tag.research {
    background: #ede9fe;
    color: #7c3aed;
    cursor: pointer;
}
.watch-card .watch-tag.research:hover {
    background: #ddd6fe;
}
.watch-card .watch-tag.holdings-badge {
    background: #fef3c7;
    color: #d97706;
    cursor: default;
}

/* ---- 观察仓网格 ---- */
.watch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.watch-section-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.watch-section-title .count {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 400;
}

/* ---- 优先级点 ---- */
.priority-dots {
    display: flex;
    gap: 3px;
}

.priority-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e2e8f0;
}

.priority-dots .dot.filled.high { background: #ef4444; }
.priority-dots .dot.filled.mid { background: #f59e0b; }
.priority-dots .dot.filled.low { background: #94a3b8; }

/* ---- 模拟仓 ---- */
.sim-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 16px;
    border: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.sim-card .sim-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sim-card .sim-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    background: #f1f5f9;
}

.sim-card .sim-info .sim-name {
    font-size: 13px;
    font-weight: 600;
}

.sim-card .sim-info .sim-detail {
    font-size: 11px;
    color: var(--text-muted);
}

.sim-card .sim-right {
    text-align: right;
}

.sim-card .sim-right .sim-value {
    font-size: 14px;
    font-weight: 600;
}

/* ---- 目标层筛选标签 ---- */
.layer-filters {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.layer-filter {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    border: 1px solid var(--border);
    background: white;
    cursor: pointer;
    transition: all 0.15s;
    color: var(--text-secondary);
}

.layer-filter.active {
    border-color: var(--primary);
    background: var(--primary-light);
    color: var(--primary);
    font-weight: 600;
}

.layer-filter:hover:not(.active) {
    background: #f1f5f9;
}
