/* common.css - 与 calculator.html 共享的通用样式（无图片依赖） */

/* 代理优势文字 */
.agent-adv-demo {
  font-size: 12px;
  color: #666;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.agent-adv-demo::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  min-width: 8px;
  background: #165DFF;
}

/* 价格拆分表格 */
.price-breakdown-wrap {
  border: 1px solid #E5E6EB;
  border-radius: 8px;
  overflow: hidden;
  margin: 8px 0 16px;
}
.price-breakdown-table {
  width: 100%;
  border-collapse: collapse;
}
.price-breakdown-table th {
  background: #F5F7FA;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 700;
  color: #333;
  text-align: left;
  border-bottom: 1px solid #E5E6EB;
}
.price-breakdown-table th:nth-child(2) {
  text-align: right;
}
.price-breakdown-table td {
  padding: 10px 14px;
  border-bottom: 1px solid #E5E6EB;
  vertical-align: middle;
}
.price-breakdown-table tbody tr:last-child td {
  border-bottom: none;
}
.price-breakdown-table td:nth-child(2) {
  text-align: right;
}
.pv-product { color: #165DFF; font-size: 16px; font-weight: 700; }
.pv-impl    { color: #0FC6C2; font-size: 16px; font-weight: 700; }
.pv-total   { color: #F53F3F; font-size: 16px; font-weight: 700; }
.pv-desc    { font-size: 12px; color: #666; display: block; margin-top: 2px; }

/* 交付周期模块 */
.delivery-module {
  background: #F5F7FA;
  border-radius: 8px;
  padding: 20px;
  margin: 16px 0;
}
.delivery-title {
  font-size: 18px;
  color: #333;
  font-weight: 700;
  margin-bottom: 14px;
}
.delivery-body {
  display: flex;
  gap: 16px;
  align-items: flex-end;
}
.delivery-total {
  flex: 0 0 30%;
  font-size: 24px;
  color: #165DFF;
  font-weight: 700;
  text-align: center;
}
.delivery-steps {
  flex: 1;
  border-bottom: 1px solid #165DFF;
  padding-bottom: 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3px;
}
.delivery-step {
  font-size: 13px;
  color: #333;
  cursor: default;
}
.delivery-step:hover { color: #0E42C1; }
.d-arrow { color: #165DFF; font-size: 13px; }

/* 移动端响应 */
@media (max-width: 768px) {
  .delivery-body { flex-direction: column; align-items: flex-start; }
  .delivery-total { font-size: 28px; text-align: left; flex: none; }
  .delivery-steps { flex-direction: column; gap: 6px; border-bottom: none; padding-bottom: 0; }
  .d-arrow { display: none; }
  .price-breakdown-table thead { display: none; }
  .price-breakdown-table,
  .price-breakdown-table tbody,
  .price-breakdown-table tr,
  .price-breakdown-table td { display: block; }
  .price-breakdown-table tr { border-bottom: 1px solid #E5E6EB; padding: 8px 0; }
  .price-breakdown-table td { border-bottom: none; }
  .price-breakdown-table td:nth-child(2) { text-align: left; }
}
