/* ==================================================
   鲸准查官网 - 页面级补充样式
   版本：v2.0（重新设计）
   ================================================== */

/* 首页 hero 背景装饰 */
.hero .decoration {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero .decoration::before,
.hero .decoration::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
}

.hero .decoration::before {
  width: 500px;
  height: 500px;
  background: var(--brand);
  top: -120px;
  right: -120px;
}

.hero .decoration::after {
  width: 400px;
  height: 400px;
  background: #60a5fa;
  bottom: -80px;
  left: -80px;
}

/* 产品页图片容器 */
.product-visual-frame {
  display: inline-block;
  position: relative;
  padding: 12px;
  background: var(--bg-soft);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}

.product-visual-frame img {
  border-radius: 16px;
  box-shadow: none;
}

/* 合作页 CTA 区 */
.coop-cta {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: var(--white);
  border-radius: var(--radius);
  padding: 56px 32px;
  text-align: center;
}

.coop-cta h2 {
  color: var(--white);
  font-size: 30px;
  margin-bottom: 14px;
}

.coop-cta p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto 28px;
}

.coop-cta .btn-secondary {
  border-color: var(--white);
  color: var(--white);
  background: transparent;
}

.coop-cta .btn-secondary:hover {
  background: var(--white);
  color: var(--brand);
}

/* 关于页公司介绍 */
.about-vision {
  background: var(--brand);
  color: var(--white);
  border-radius: var(--radius);
  padding: 48px;
  text-align: center;
}

.about-vision h2 {
  color: var(--white);
  font-size: 28px;
  margin-bottom: 16px;
}

.about-vision p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.8;
}

/* 行业标签云（合作页） */
.industry-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.industry-cloud span {
  padding: 8px 16px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  color: var(--text-sub);
}

/* 资讯列表（首页） */
.news-list {
  display: grid;
  gap: 16px;
}

.news-item {
  display: flex;
  gap: 16px;
  padding: 18px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.news-item:hover {
  background: var(--bg-soft);
}

.news-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brand-light);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.news-item-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
}

.news-item h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.news-item p {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.6;
}

/* 响应式补充 */
@media (max-width: 720px) {
  .coop-cta {
    padding: 40px 24px;
  }

  .coop-cta h2 {
    font-size: 24px;
  }

  .about-vision {
    padding: 32px 24px;
  }

  .about-vision h2 {
    font-size: 22px;
  }
}
