/* ============================================
   阶段详情页样式（拆改/水电/防水等）
   ============================================ */

.stage-content {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    background: #F5F5F7;
    padding: 16px;
}

/* 顶部摘要 */
.stage-summary {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.stage-summary p {
    font-size: 14px;
    color: #1D1D1F;
    line-height: 1.7;
    margin: 0;
}

.stage-summary strong {
    color: #007AFF;
    font-weight: 600;
}

/* 要点区块 */
.stage-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 12px;
}

.stage-point {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    gap: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.point-num {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #007AFF;
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.point-body {
    flex: 1;
    min-width: 0;
}

.point-body h4 {
    font-size: 15px;
    font-weight: 600;
    color: #1D1D1F;
    margin: 0 0 8px 0;
}

.point-desc {
    font-size: 13px;
    color: #86868B;
    margin: 0 0 6px 0;
}

.point-list {
    list-style: none;
    margin: 0 0 8px 0;
    padding: 0;
}

.point-list li {
    font-size: 14px;
    color: #1D1D1F;
    line-height: 1.7;
    padding: 2px 0;
    padding-left: 16px;
    position: relative;
}

.point-list li::before {
    content: '•';
    color: #007AFF;
    font-weight: bold;
    position: absolute;
    left: 4px;
    top: 2px;
}

.point-list.check-list li::before {
    content: '✓';
    color: #34C759;
}

.point-warn {
    font-size: 13px;
    color: #FF3B30;
    line-height: 1.7;
    margin: 0 0 6px 0;
    padding: 8px 10px;
    background: #FFF1F0;
    border-radius: 6px;
}

.point-tip {
    font-size: 13px;
    color: #424245;
    line-height: 1.7;
    margin: 0;
    padding: 8px 10px;
    background: #F5F5F7;
    border-radius: 6px;
}

/* 金句 */
.stage-quote {
    font-size: 14px;
    color: #1D1D1F;
    line-height: 1.7;
    padding: 14px 16px;
    background: #FFFFFF;
    border-radius: 12px;
    margin-bottom: 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.stage-quote.highlight {
    background: #FFFFFF;
    color: #007AFF;
    font-weight: 500;
    border-left: 3px solid #007AFF;
    margin-bottom: 0;
}

/* 风险提示区 */
.risk-section {
    background: #FFF8E6;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
    border-left: 3px solid #FF9500;
}

.risk-title {
    font-size: 15px;
    font-weight: 600;
    color: #FF9500;
    margin: 0 0 8px 0;
}

.risk-desc {
    font-size: 13px;
    color: #1D1D1F;
    line-height: 1.7;
    margin: 0 0 8px 0;
}

.risk-section .point-list li {
    color: #1D1D1F;
}

.risk-section .point-list li::before {
    color: #FF9500;
}

/* 价格卡 */
.price-card {
    background: linear-gradient(135deg, #007AFF 0%, #5856D6 100%);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(0, 122, 255, 0.2);
}

.price-info {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 6px;
}

.price-amount {
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
}

.price-unit {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.price-note {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

/* 设备卡片 */
.device-card {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.device-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #F0F7FF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.device-body {
    flex: 1;
    min-width: 0;
}

.device-body h4 {
    font-size: 15px;
    font-weight: 600;
    color: #1D1D1F;
    margin: 0 0 4px 0;
}

.device-body p {
    font-size: 13px;
    color: #424245;
    line-height: 1.6;
    margin: 0;
}

/* 行动按钮 */
.stage-action {
    margin-top: 20px;
    text-align: center;
}

.stage-action .action-btn-primary {
    display: block;
    padding: 14px 20px;
    background: #007AFF;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    transition: background 0.15s ease;
    box-shadow: 0 2px 8px rgba(0, 122, 255, 0.3);
}

.stage-action .action-btn-primary:hover,
.stage-action .action-btn-primary:active {
    background: #0066D6;
}
