/* 服务商查询页样式（chaxunzhan） */

.dl-intro{ color:var(--ink-3); font-size:15px; line-height:1.8; max-width:760px; margin:0 auto 28px; text-align:center; }

/* 筛选区 */
.dl-filter{
  display:grid; grid-template-columns:1fr 1fr 1fr auto; gap:16px; align-items:end;
  background:var(--card); border:1px solid rgba(0,0,0,.06); border-radius:var(--radius);
  box-shadow:var(--shadow); padding:26px 28px; max-width:960px; margin:0 auto 34px;
}
.dl-field{ display:flex; flex-direction:column; gap:8px; }
.dl-field > span{ font-size:13px; color:var(--ink-3); }
.dl-field > span i{ color:#e5484d; font-style:normal; }
.dl-field select{
  height:46px; padding:0 12px; border:1px solid #e2e5e9; border-radius:10px;
  background:#fff; font-size:14px; color:var(--ink); outline:none; width:100%;
}
.dl-field select:focus{ border-color:var(--brand); box-shadow:0 0 0 3px rgba(0,194,111,.12); }
.dl-btns{ display:flex; gap:10px; }
.dl-btns .btn{ height:46px; line-height:44px; padding:0 22px; white-space:nowrap; }
.dl-btns .btn.ghost{ background:#fff; border:1px solid #e2e5e9; color:var(--ink); }
.dl-btns .btn.ghost:hover{ border-color:var(--brand); color:var(--brand); background:#fff; }

/* 结果头 */
.dl-result-head{ max-width:960px; margin:0 auto 6px; font-size:14px; color:var(--ink-3); }
.dl-result-head strong{ color:var(--brand); font-size:16px; }

/* 状态提示 */
.dl-status{
  display:none; max-width:960px; margin:14px auto 0; padding:12px 16px;
  background:#fff7e6; border:1px solid #ffe1a8; border-radius:10px; color:#8a5b00; font-size:14px;
}

/* 列表 */
.dl-list{ max-width:960px; margin:18px auto 0; display:flex; flex-direction:column; gap:14px; }
.dl-item{
  display:flex; align-items:center; justify-content:space-between; gap:24px;
  background:var(--card); border:1px solid rgba(0,0,0,.06); border-radius:12px;
  padding:20px 24px; transition:box-shadow .2s, transform .2s;
}
.dl-item:hover{ box-shadow:var(--shadow); transform:translateY(-2px); }
.dl-main{ min-width:0; }
.dl-name{ font-size:16px; font-weight:600; color:var(--ink); display:flex; align-items:center; gap:10px; flex-wrap:wrap; }
.dl-tag{
  font-size:12px; font-weight:500; color:var(--brand); background:rgba(0,194,111,.1);
  border-radius:999px; padding:2px 10px; white-space:nowrap;
}
.dl-addr{
  margin-top:8px; font-size:14px; color:var(--ink-3); line-height:1.6;
  display:flex; align-items:flex-start; gap:6px;
}
.dl-addr svg{ width:15px; height:15px; fill:none; stroke:var(--brand); stroke-width:2; flex:none; margin-top:3px; }
.dl-phone{
  flex:none; text-align:right; font-size:15px; color:var(--ink); font-weight:600;
  display:flex; align-items:center; gap:6px;
}
.dl-phone svg{ width:15px; height:15px; fill:none; stroke:var(--brand); stroke-width:2; }

/* 空状态 */
.dl-empty{
  max-width:960px; margin:30px auto 0; text-align:center;
  background:var(--card); border:1px dashed #d9dde2; border-radius:var(--radius); padding:56px 24px;
}
.dl-empty .e-ico{ font-size:38px; margin-bottom:12px; }
.dl-empty h3{ font-size:18px; margin-bottom:8px; }
.dl-empty p{ color:var(--ink-3); font-size:14px; line-height:1.8; }

@media (max-width:860px){
  .dl-filter{ grid-template-columns:1fr; padding:20px; }
  .dl-btns{ justify-content:stretch; }
  .dl-btns .btn{ flex:1; }
  .dl-item{ flex-direction:column; align-items:flex-start; gap:12px; }
  .dl-phone{ text-align:left; }
}
