#seoHomeDom {
  width: 100%;
  background-color: #f4f4f6;
  color: #333333;
  box-sizing: border-box;
  font-family: inherit;
  min-height: 100vh;
}

#seoHomeDom.hide-seo {
  display: none !important;
}

#seoHomeDom:empty {
  display: none;
}

#seoHomeDom .seo-home-page {
  margin: 0;
}

#seoHomeDom .seo-nav-bar {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 60px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  box-sizing: border-box;
}

#seoHomeDom .seo-nav-left {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #333;
}

#seoHomeDom .seo-nav-left img {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  object-fit: cover;
}

#seoHomeDom .seo-nav-left span {
  font-size: 16px;
  font-weight: 700;
}

#seoHomeDom .seo-nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

#seoHomeDom .seo-nav-links {
  display: none;
}

#seoHomeDom .seo-banner {
  position: relative;
  width: 100%;
  height: 240px;
  background-color: #e5e5e5;
  background-size: cover;
  background-position: center;
}

/* 一级标题：保留在文档中供爬虫读取，视觉上不占用首屏布局 */
#seoHomeDom .seo-page-h1 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

#seoHomeDom .seo-header-content {
  display: none;
}

#seoHomeDom .seo-order-btn {
  display: inline-block;
  background: #695AFF;
  color: #fff;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

#seoHomeDom .seo-info-grid {
  position: relative;
  margin: 0;
  background: #f4f4f6;
  padding: 20px 16px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#seoHomeDom .seo-info-grid-container {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 768px) {
  #seoHomeDom .seo-banner {
    height: 360px;
  }

  #seoHomeDom .seo-nav-bar {
    padding: 0 40px;
    height: 72px;
  }

  #seoHomeDom .seo-nav-links {
    display: flex;
    gap: 32px;
    color: #333;
    font-size: 14px;
  }

  #seoHomeDom .seo-nav-links span {
    font-weight: 500;
    cursor: pointer;
  }

  #seoHomeDom .seo-nav-links span.active {
    color: #695AFF;
    border-bottom: 2px solid #695AFF;
    padding-bottom: 4px;
  }

  #seoHomeDom .seo-info-grid {
    margin: 0 auto;
    max-width: 800px;
    padding: 24px 40px;
  }
}

#seoHomeDom .seo-info-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

#seoHomeDom .seo-info-card h2 {
  margin: 0;
  font-size: 14px;
  color: #333;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

#seoHomeDom .seo-info-card h2::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background-color: #ccc;
  mask-size: contain;
  -webkit-mask-size: contain;
}

#seoHomeDom .seo-info-card:nth-child(1) h2::before {
  background-color: #333;
  mask-image: url('data:image/svg+xml;utf8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M21.384 17.752a2.108 2.108 0 0 1-.522 2.271l-1.552 1.552a2.25 2.25 0 0 1-3.14.073c-3.18-2.614-6.425-6.321-8.528-9.424a2.25 2.25 0 0 1 .073-3.14l1.552-1.552a2.108 2.108 0 0 1 2.271-.522l3.43 1.47a2.107 2.107 0 0 1 1.144 2.247l-.527 2.636c.414.928 1.155 1.867 2.128 2.502l2.636-.527a2.107 2.107 0 0 1 2.247 1.144l1.47 3.43z" stroke="%23333" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M21.384 17.752a2.108 2.108 0 0 1-.522 2.271l-1.552 1.552a2.25 2.25 0 0 1-3.14.073c-3.18-2.614-6.425-6.321-8.528-9.424a2.25 2.25 0 0 1 .073-3.14l1.552-1.552a2.108 2.108 0 0 1 2.271-.522l3.43 1.47a2.107 2.107 0 0 1 1.144 2.247l-.527 2.636c.414.928 1.155 1.867 2.128 2.502l2.636-.527a2.107 2.107 0 0 1 2.247 1.144l1.47 3.43z" stroke="%23333" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}

#seoHomeDom .seo-info-card:nth-child(2) h2::before {
  background-color: #333;
  mask-image: url('data:image/svg+xml;utf8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12 21c-4.418 0-8-3.582-8-8 0-4.043 3.018-7.391 6.914-7.931M12 21c4.418 0 8-3.582 8-8 0-4.043-3.018-7.391-6.914-7.931M12 21V13m0-7.931A8.04 8.04 0 0 0 12 5c-4.418 0-8 3.582-8 8 0 .809.12 1.59.345 2.333m15.31-2.333a7.95 7.95 0 0 0-.345-2.333M12 13a3 3 0 1 0 0-6 3 3 0 0 0 0 6z" stroke="%23333" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12 21c-4.418 0-8-3.582-8-8 0-4.043 3.018-7.391 6.914-7.931M12 21c4.418 0 8-3.582 8-8 0-4.043-3.018-7.391-6.914-7.931M12 21V13m0-7.931A8.04 8.04 0 0 0 12 5c-4.418 0-8 3.582-8 8 0 .809.12 1.59.345 2.333m15.31-2.333a7.95 7.95 0 0 0-.345-2.333M12 13a3 3 0 1 0 0-6 3 3 0 0 0 0 6z" stroke="%23333" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}

#seoHomeDom .seo-info-card:nth-child(3) h2::before {
  background-color: #333;
  mask-image: url('data:image/svg+xml;utf8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="12" cy="12" r="10" stroke="%23333" stroke-width="2"/><path d="M12 6v6l4 2" stroke="%23333" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="12" cy="12" r="10" stroke="%23333" stroke-width="2"/><path d="M12 6v6l4 2" stroke="%23333" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}

#seoHomeDom .seo-info-card p,
#seoHomeDom .seo-info-card address {
  margin: 0;
  font-size: 13px;
  color: #333;
  font-weight: 500;
  font-style: normal;
  line-height: 1.5;
  padding-left: 24px;
}

#seoHomeDom .seo-info-card a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid #ccc;
}

#seoHomeDom .business-hours {
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
  color: #333;
  font-weight: 500;
  max-width: 240px;
}

#seoHomeDom .bh-row {
  display: flex;
  justify-content: space-between;
}

#seoHomeDom .bh-row .closed {
  color: #E02020;
}
