/* drawdown-management.css - 回撤管理页面专属样式 */
.main-container {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* 回撤项样式：底部间距分隔 */
.drawdown-item {
    margin-bottom: 25px;
}

.drawdown-item:last-child {
    margin-bottom: 0;
}

/* 回撤标题：底部边框，突出层级 */
.drawdown-title {
    color: #2c3e50;
    font-size: 16px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #dee2e6;
}

/* 高亮内容：浅灰背景，突出核心数据 */
.highlight-content {
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 6px;
}

/* 大文本：突出核心数值 */
.big-text {
    font-size: 20px;
    font-weight: bold;
}

/* 市值变动：固定红色 */
.market-value {
    color: #e74c3c;
}

/* 风险等级：小标签样式 */
.risk-level {
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 12px;
}

/* 建议文本：区分危险和普通 */
.suggestion-danger {
    color: #e74c3c;
}

.suggestion-normal {
    color: #3498db;
}

/* 回撤明细/卖飞提醒列表：最大高度+滚动 */
.drawdown-list, .sell-miss-list {
    max-height: 350px;
    overflow-y: auto;
    background-color: #f8f9fa;
    border-radius: 6px;
    padding: 15px;
}

/* 明细项/提醒项：底部边框分隔 */
.drawdown-detail, .sell-miss-item {
    padding: 12px;
    border-bottom: 1px solid #dee2e6;
    margin-bottom: 10px;
}

.drawdown-detail:last-child, .sell-miss-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.drawdown-detail h4, .sell-miss-item h4 {
    color: #2c3e50;
    font-size: 15px;
    margin-bottom: 8px;
}

.drawdown-detail p, .sell-miss-item p {
    font-size: 13px;
    color: #7f8c8d;
    margin-bottom: 4px;
}

/* 时间查询表单：弹性布局，适配小屏幕 */
.time-query-form {
    margin-bottom: 20px;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: flex-end;
}

.time-item {
    flex: 1;
    min-width: 200px;
}

.query-btn {
    padding: 10px 20px;
    cursor: pointer;
}