@charset "utf-8";

:root {
  --page-blue: #0372fe;
  --page-blue-2: #539fff;
  --page-dark: #1f315e;
  --page-text: #1d1d1f; /* 苹果官网简体中文文本深色 (Charcoal black) */
  --page-muted: #86868b; /* 苹果官网简体中文次要文本灰色 */
  --page-line: #e7edf5;
  --page-bg: #f6f9ff;
  --page-card: #fff;
  --con-width: 1200px;
  --page-base-font: 16px;
}
body.page-body {
  color: var(--page-text);
  background: #fff;
  font-size: var(--page-base-font);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro SC", "SF Pro Text", "Helvetica Neue", "PingFang SC", "Microsoft YaHei", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.page-body > header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  height: 72px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(231, 237, 245, 0.9);
}
.page-header-inner {
  width: var(--con-width);
  height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.page-header-inner .logo {
  width: 160px;
  height: 36px;
}
.page-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.page-nav:not([data-auth-ready]) a[href*="open=login"],
.page-nav:not([data-auth-ready]) a[href*="open=register"] {
  visibility: hidden;
}
.page-nav[data-auth-ready] [data-landing-auth-link],
.page-nav[data-auth-ready] a[data-landing-auth-open] {
  visibility: visible;
}
.page-nav a {
  font-size: 16px;
  color: #344054;
  font-weight: 500;
  transition: color 0.2s ease;
}
.page-nav a:hover,
.page-nav a.active {
  color: var(--page-blue);
}
.page-nav .landing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  border: none;
  border-radius: 8px;
  font-family: inherit;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.page-nav .landing-btn-primary {
  color: #fff !important;
  background: linear-gradient(90deg, var(--page-blue) 0%, var(--page-blue-2) 100%);
}
.page-nav .landing-btn-primary:hover {
  color: #fff !important;
  background: radial-gradient(100% 130% at 100% 0%, #32dfff 0%, #0372fe 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(3, 114, 254, 0.25);
}
.page-nav .landing-btn-text {
  height: 36px;
  padding: 0 8px;
  color: #344054;
  background: transparent;
  font-weight: 500;
}
.page-nav .landing-btn-text:hover {
  color: var(--page-blue);
}
.page-nav .landing-btn-sm {
  height: 36px;
  padding: 0 16px;
  font-size: 14px;
  line-height: 1;
  border-radius: 6px;
}
.page-nav .nav-user-menu {
  position: relative;
  display: inline-flex;
}
.page-nav .nav-user-trigger,
.page-nav .nav-user {
  max-width: 120px;
  overflow: hidden;
  padding: 0;
  border: none;
  background: none;
  color: #344054;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.2s ease;
}
.page-nav .nav-user-trigger:hover,
.page-nav .nav-user:hover {
  color: var(--page-blue);
}
.page-nav .nav-user-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 100;
  min-width: 120px;
  padding: 6px;
  border: 1px solid #e4e7ec;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.12);
}
.page-nav .nav-user-logout {
  display: block;
  width: 100%;
  padding: 8px 12px;
  border: none;
  border-radius: 6px;
  background: none;
  color: #344054;
  font-family: inherit;
  font-size: 14px;
  text-align: left;
  cursor: pointer;
}
.page-nav .nav-user-logout:hover {
  background: #f2f4f7;
  color: #d92d20;
}
.page-nav .nav-console {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  padding: 0 14px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--page-blue) 0%, var(--page-blue-2) 100%);
  color: #fff !important;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
}
.page-nav .nav-console:hover {
  color: #fff !important;
  background: radial-gradient(100% 130% at 100% 0%, #32dfff 0%, #0372fe 100%);
}
.page-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 0;
  height: 420px;
  overflow: hidden;
  padding: 0;
  background: linear-gradient(135deg, #eff6ff 0%, #fff 46%, #eefbff 100%);
}
.page-hero::before,
.page-hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(8px);
  opacity: 0.7;
  pointer-events: none;
}
.page-hero .page-container {
  position: relative;
  z-index: 1;
}
#weather-api-products,
#ai-weather-products {
  scroll-margin-top: 88px;
}
.page-hero::before {
  width: 360px;
  height: 360px;
  right: 7%;
  top: -120px;
  background: rgba(3, 114, 254, 0.14);
}
.page-hero::after {
  width: 260px;
  height: 260px;
  left: 8%;
  bottom: -130px;
  background: rgba(50, 223, 255, 0.18);
}
.page-container {
  position: relative;
  width: var(--con-width);
  margin: 0 auto;
}
.page-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(3, 114, 254, 0.08);
  color: var(--page-blue);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 22px;
}
.page-kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--page-blue);
}
.page-hero h1 {
  max-width: 760px;
  font-size: 54px;
  line-height: 1.18;
  color: var(--page-dark);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}
.page-hero p {
  max-width: 700px;
  color: var(--page-muted);
  font-size: 22px;
  line-height: 1.75;
}
.page-hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
  position: relative;
  z-index: 2;
}
.page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 146px;
  height: 48px;
  padding: 0 24px;
  border-radius: 10px;
  font-size: 17px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}
.page-btn-primary {
  color: #fff;
  background: linear-gradient(90deg, var(--page-blue) 0%, var(--page-blue-2) 100%);
  box-shadow: 0 14px 28px rgba(3, 114, 254, 0.18);
}
.page-btn-primary:hover {
  background: radial-gradient(100% 130% at 100% 0%, #32dfff 0%, var(--page-blue) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(3, 114, 254, 0.25);
  color: #fff;
}
.page-btn-secondary {
  color: var(--page-blue);
  background: #fff;
  border-color: #cfe2ff;
}
.page-btn-secondary:hover {
  background: #f0f7ff;
  border-color: var(--page-blue);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(3, 114, 254, 0.1);
  color: var(--page-blue);
}
.page-section {
  padding: 86px 0;
}
.page-section.alt {
  background: var(--page-bg);
}
.section-head {
  text-align: center;
  margin-bottom: 52px;
}
.section-head h2 {
  font-size: 40px;
  line-height: 1.35;
  font-weight: 700;
  color: var(--page-text);
  letter-spacing: -0.015em;
  margin-bottom: 14px;
}
.section-head p {
  max-width: 720px;
  margin: 0 auto;
  font-size: 19px;
  line-height: 1.75;
  color: var(--page-muted);
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.info-card,
.solution-card,
.product-card,
.news-card {
  background: var(--page-card);
  border: 1px solid var(--page-line);
  border-radius: 22px;
  box-shadow: 0 20px 45px rgba(31, 49, 94, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.info-card:hover,
.solution-card:hover,
.product-card:hover,
.news-card:hover {
  transform: translateY(-5px);
  border-color: #cfe2ff;
  box-shadow: 0 24px 60px rgba(31, 49, 94, 0.1);
}
.solution-card,
.product-card {
  padding: 32px;
}
.card-icon {
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: linear-gradient(135deg, #eaf3ff, #f6fbff);
  color: var(--page-blue);
  font-size: 28px;
  margin-bottom: 22px;
}
.solution-card h3,
.product-card h3,
.info-card h3 {
  font-size: 24px;
  line-height: 1.4;
  color: var(--page-text);
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
}
.solution-card p,
.product-card p,
.info-card p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--page-muted);
}
.feature-list {
  margin-top: 22px;
}
.feature-list li {
  list-style: none;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #475467;
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 9px;
}
.feature-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--page-blue);
  margin-top: 10px;
  flex: 0 0 auto;
}
.metric-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 26px;
  border-radius: 26px;
  background: #17233d;
  color: #fff;
}
.metric-band strong {
  display: block;
  font-size: 34px;
  line-height: 1.2;
  margin-bottom: 8px;
}
.metric-band span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
}
.product-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 26px;
}
.product-side {
  position: sticky;
  top: 94px;
  align-self: start;
  padding: 26px;
  border-radius: 22px;
  background: #17233d;
  color: #fff;
}
.product-side h3 {
  font-size: 24px;
  margin-bottom: 14px;
}
.product-side p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
}
.product-category {
  margin-bottom: 28px;
}
.product-category h2 {
  font-size: 28px;
  color: #17233d;
  text-align: left;
  margin-bottom: 18px;
}
.product-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.product-card small {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 999px;
  background: #eef6ff;
  color: var(--page-blue);
  font-weight: 700;
  margin-bottom: 14px;
}
.product-overview-section {
  background: #fff;
}
.product-line-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}
.product-line-card {
  position: relative;
  min-height: 380px;
  padding: 40px;
  overflow: hidden;
  border: 1px solid #e6edf7;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 22px 52px rgba(31, 49, 94, 0.07);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}
.product-line-card:hover {
  transform: translateY(-6px);
  border-color: #bfdcff;
  box-shadow: 0 24px 60px rgba(3, 114, 254, 0.12);
}
.product-line-card::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -90px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(3, 114, 254, 0.08);
}
.product-line-card-ai::after {
  background: rgba(50, 223, 255, 0.12);
}
.product-line-card > span {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 12px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: #eef6ff;
  color: var(--page-blue);
  font-size: 13px;
  line-height: 28px;
  font-weight: 700;
}
.product-line-card h3 {
  margin-bottom: 16px;
  color: var(--page-text);
  font-size: 32px;
  line-height: 44px;
  font-weight: 700;
  letter-spacing: -0.015em;
}
.product-line-card p {
  max-width: 470px;
  margin-bottom: 24px;
  color: var(--page-muted);
  font-size: 17px;
  line-height: 30px;
}
.product-line-card ul {
  display: grid;
  gap: 12px;
}
.product-line-card li {
  position: relative;
  padding-left: 18px;
  list-style: none;
  color: #344054;
  font-size: 15px;
  line-height: 24px;
}
.product-line-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--page-blue);
}
.product-system-section {
  background: #f8fbff;
}
.product-section-title {
  max-width: 760px;
  margin-bottom: 42px;
}
.product-section-title span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--page-blue);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.product-section-title h2 {
  margin-bottom: 14px;
  text-align: left;
  color: var(--page-text);
  font-size: 38px;
  line-height: 52px;
  font-weight: 700;
  letter-spacing: -0.015em;
}
.product-section-title p {
  color: var(--page-muted);
  font-size: 17px;
  line-height: 30px;
}
.api-category {
  margin-top: 36px;
}
.api-category h3 {
  margin-bottom: 18px;
  color: #17233d;
  font-size: 24px;
  line-height: 34px;
  font-weight: 800;
}
.product-list.product-list-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.product-list-3 .product-card {
  display: flex;
  min-height: 320px;
  flex-direction: column;
  padding: 32px;
  border-radius: 24px;
  background: linear-gradient(135deg, #ffffff 0%, #f3f8fe 100%);
  border: 1px solid #e7edf5;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, background 0.3s ease;
}
.product-list-3 .product-card.product-detail-trigger {
  cursor: pointer;
}
.product-list-3 .product-card.product-detail-trigger:hover,
.product-list-3 .product-card.product-detail-trigger:focus-visible {
  transform: translateY(-8px);
  border-color: #85b8ff;
  background: linear-gradient(135deg, #ffffff 0%, #e5efff 100%);
  box-shadow: 0 24px 48px rgba(3, 114, 254, 0.15);
  outline: none;
}
.product-list-3 .product-card small {
  align-self: flex-start;
  margin-bottom: 20px;
  background: #edf6ff;
  color: var(--page-blue);
  font-size: 13px;
  line-height: 20px;
  transition: all 0.3s ease;
}
/* Color-coded badges for API cards */
.product-list-3 .product-card[data-product="productSearch"] small,
.product-list-3 .product-card[data-product="astronomy"] small {
  background: rgba(3, 114, 254, 0.1);
  color: var(--page-blue);
}
.product-list-3 .product-card[data-product="current"] small,
.product-list-3 .product-card[data-product="forecastDaily"] small,
.product-list-3 .product-card[data-product="forecastHourly"] small,
.product-list-3 .product-card[data-product="alert"] small,
.product-list-3 .product-card[data-product="typhoon"] small,
.product-list-3 .product-card[data-product="weatherIndex"] small,
.product-list-3 .product-card[data-product="air"] small {
  background: rgba(239, 68, 68, 0.12);
  color: #e53e3e;
}
.product-list-3 .product-card[data-product="minuteRain"] small {
  background: rgba(16, 185, 129, 0.12);
  color: #059669;
}
.product-list-3 .product-card[data-product="videoDownload"] small {
  background: rgba(245, 158, 11, 0.12);
  color: #d97706;
}
.product-list-3 .product-card[data-product="map"] small,
.product-list-3 .product-card[data-product="grid"] small {
  background: rgba(99, 102, 241, 0.12);
  color: #4f46e5;
}
.product-list-3 .product-card[data-product="industryCombo"] small {
  background: rgba(139, 92, 246, 0.12);
  color: #7c3aed;
}
.product-list-3 .product-card h4 {
  margin-bottom: 14px;
  color: var(--page-text);
  font-size: 22px;
  line-height: 32px;
  font-weight: 600;
  letter-spacing: -0.015em;
  transition: color 0.2s ease;
}
.product-list-3 .product-card.product-detail-trigger:hover h4,
.product-list-3 .product-card.product-detail-trigger:focus-visible h4 {
  color: var(--page-blue);
}
.product-list-3 .product-card p {
  margin-bottom: 20px;
  color: #667085;
  font-size: 16px;
  line-height: 28px;
}
.product-list-3 .product-card em {
  display: block;
  margin-top: 0;
  margin-bottom: 20px;
  padding-top: 16px;
  border-top: 1px solid #eef2f7;
  color: #475467;
  font-size: 14px;
  line-height: 24px;
  font-style: normal;
  font-weight: 600;
}
.product-card-more {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  color: #111827;
  font-size: 15px;
  line-height: 24px;
  font-weight: 800;
  transition: color 0.2s ease;
}
.product-card-more i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  color: #98a2b3;
  background: #f6f8fb;
  font-size: 24px;
  line-height: 1;
  font-style: normal;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.product-list-3 .product-card.product-detail-trigger:hover .product-card-more,
.product-list-3 .product-card.product-detail-trigger:focus-visible .product-card-more {
  color: var(--page-blue);
}
.product-list-3 .product-card.product-detail-trigger:hover .product-card-more i,
.product-list-3 .product-card.product-detail-trigger:focus-visible .product-card-more i {
  color: #fff;
  background: var(--page-blue);
  transform: translateX(4px);
}
.ai-product-section {
  background: linear-gradient(180deg, #f6f9ff 0%, #fff 100%);
}
.ai-product-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 26px;
}
.ai-product-card {
  position: relative;
  padding: 34px;
  overflow: hidden;
  border: 1px solid #dfeaff;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 22px 52px rgba(31, 49, 94, 0.08);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}
.ai-product-card:hover {
  transform: translateY(-6px);
  border-color: #bfdcff;
  box-shadow: 0 24px 60px rgba(3, 114, 254, 0.12);
}
.ai-product-primary {
  color: #fff;
  border: 1px solid #1a2a3a;
  background: #0d0f12;
}
.ai-product-primary:hover {
  border-color: #00ff66;
  box-shadow: 0 24px 60px rgba(0, 255, 102, 0.15);
}
.ai-product-primary .ai-product-status {
  background: rgba(0, 255, 102, 0.1);
  border: 1px solid rgba(0, 255, 102, 0.25);
  color: #00ff66;
}
.ai-product-primary p {
  color: #a3e6be;
}
.ai-product-primary .ai-product-subgrid div {
  background: rgba(0, 255, 102, 0.04);
  border: 1px solid rgba(0, 255, 102, 0.1);
}
.ai-product-primary .ai-product-subgrid strong {
  color: #00ff66;
}
.ai-product-primary .ai-product-subgrid span {
  color: #8ccda5;
}
.ai-product-status {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 12px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}
.ai-product-status.coming {
  background: #eef6ff;
  color: var(--page-blue);
}
.ai-product-card h3 {
  margin-bottom: 14px;
  color: inherit;
  font-size: 30px;
  line-height: 42px;
  font-weight: 700;
  letter-spacing: -0.015em;
}
.ai-product-card p {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 28px;
}
.ai-product-card:not(.ai-product-primary) p,
.ai-product-card:not(.ai-product-primary) li {
  color: #667085;
}
.ai-product-card ul {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}
.ai-product-card li {
  list-style: none;
  font-size: 15px;
  line-height: 24px;
}
.ai-product-subgrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.ai-product-subgrid div {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
}
.ai-product-subgrid strong,
.ai-product-subgrid span {
  display: block;
}
.ai-product-subgrid strong {
  margin-bottom: 8px;
  color: #fff;
  font-size: 16px;
  line-height: 24px;
}
.ai-product-subgrid span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 24px;
}
.ai-roadmap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 28px;
  padding: 22px 24px;
  border: 1px solid #dfeaff;
  border-radius: 22px;
  background: #fff;
}
.ai-roadmap span {
  color: #17233d;
  font-size: 14px;
  line-height: 22px;
  font-weight: 800;
  white-space: nowrap;
}
.ai-roadmap i {
  flex: 1;
  height: 1px;
  min-width: 26px;
  background: linear-gradient(90deg, #dbeafe, #0372fe);
}
.solution-advice-overlay,
.product-advice-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10050;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(17, 24, 39, 0.56);
  backdrop-filter: blur(8px);
  overflow-y: auto;
}
.solution-advice-overlay.is-open,
.product-advice-overlay.is-open {
  display: flex;
}
.solution-advice-modal,
.product-advice-modal {
  position: relative;
  width: min(820px, 100%);
  max-height: calc(100vh - 56px);
  overflow-y: auto;
  padding: 36px;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 34px 90px rgba(17, 24, 39, 0.32);
}
.solution-advice-close,
.product-advice-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: rgba(247, 250, 255, 0.96) url(../images/close.png) no-repeat center;
  background-size: 14px 14px;
  cursor: pointer;
}
.solution-advice-head,
.product-advice-head {
  max-width: 680px;
  margin-bottom: 26px;
}
.solution-advice-head span,
.product-advice-head span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--page-blue);
  background: #eef6ff;
  font-size: 13px;
  line-height: 20px;
  font-weight: 800;
}
.solution-advice-head h2,
.product-advice-head h2 {
  margin: 0 0 12px;
  text-align: left;
  color: #111827;
  font-size: 34px;
  line-height: 44px;
  font-weight: 800;
}
.solution-advice-head p,
.product-advice-head p {
  margin: 0;
  color: #667085;
  font-size: 16px;
  line-height: 28px;
}
.solution-advice-form,
.product-advice-form {
  display: grid;
  gap: 18px;
}
.solution-advice-form .form-grid,
.product-advice-form .form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.solution-advice-form label,
.product-advice-form label {
  display: grid;
  gap: 8px;
  color: #344054;
  font-size: 14px;
  line-height: 22px;
  font-weight: 800;
}
.solution-advice-form .industry-select-container {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.solution-advice-form .industry-select-container.industry-select-stacked {
  grid-template-columns: 1fr;
}
.solution-advice-form .form-grid .form-wide {
  grid-column: 1 / -1;
}
.solution-advice-form label span .required,
.solution-advice-form label span.required,
.product-advice-form label span .required,
.product-advice-form label span.required {
  color: #d92d20;
}
.product-advice-form .form-grid .form-wide {
  grid-column: 1 / -1;
}
.product-advice-form .advice-field-error,
.solution-advice-form .advice-field-error {
  color: #f56c6c;
  font-size: 12px;
  line-height: 1;
  font-weight: 400;
}
.product-advice-form input.is-error,
.product-advice-form select.is-error,
.product-advice-form textarea.is-error,
.solution-advice-form input.is-error,
.solution-advice-form select.is-error,
.solution-advice-form textarea.is-error {
  border-color: #f56c6c;
}
.product-advice-form input.is-error:focus,
.product-advice-form select.is-error:focus,
.product-advice-form textarea.is-error:focus,
.solution-advice-form input.is-error:focus,
.solution-advice-form select.is-error:focus,
.solution-advice-form textarea.is-error:focus {
  border-color: #f56c6c;
  box-shadow: 0 0 0 4px rgba(245, 108, 108, 0.1);
}
.solution-advice-form input,
.solution-advice-form select,
.solution-advice-form textarea,
.product-advice-form input,
.product-advice-form select,
.product-advice-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 13px;
  border: 1px solid #d9e4f5;
  border-radius: 12px;
  outline: none;
  color: #111827;
  background: #fff;
  font-size: 14px;
  line-height: 22px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.solution-advice-form textarea,
.product-advice-form textarea {
  resize: vertical;
}
.solution-advice-form select,
.product-advice-form select {
  height: 44px;
}
.solution-advice-form input:focus,
.solution-advice-form select:focus,
.solution-advice-form textarea:focus,
.product-advice-form input:focus,
.product-advice-form select:focus,
.product-advice-form textarea:focus {
  border-color: var(--page-blue);
  box-shadow: 0 0 0 4px rgba(3, 114, 254, 0.1);
}
.solution-advice-note,
.product-advice-note {
  padding: 12px 14px;
  border: 1px solid #e4efff;
  border-radius: 14px;
  color: #667085;
  background: #f7faff;
  font-size: 13px;
  line-height: 22px;
}
.solution-advice-actions,
.product-advice-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  padding-top: 4px;
}
.product-advice-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  padding: 40px 24px 48px;
  text-align: center;
}
.product-advice-success[hidden],
.product-advice-body[hidden] {
  display: none !important;
}
.product-advice-success-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: #67c23a;
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
}
.product-advice-success h3 {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  color: #1f315e;
}
.product-advice-success p {
  margin: 0;
  font-size: 14px;
  line-height: 22px;
  color: #667085;
}
.image-preview-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 11000;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: rgba(2, 6, 23, 0.82);
}
.image-preview-overlay.is-open {
  display: flex;
}
.image-preview-overlay img {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: 18px;
  object-fit: contain;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}
.image-preview-close {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 1;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  cursor: pointer;
}
.image-preview-close::before,
.image-preview-close::after {
  content: "";
  position: absolute;
  left: 13px;
  top: 20px;
  width: 16px;
  height: 2px;
  border-radius: 99px;
  background: #111827;
}
.image-preview-close::before { transform: rotate(45deg); }
.image-preview-close::after { transform: rotate(-45deg); }
.product-detail-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  padding: 32px;
  background: rgba(17, 24, 39, 0.56);
  backdrop-filter: blur(8px);
  overflow-y: auto;
}
.product-detail-overlay.is-open {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
.product-detail-modal {
  position: relative;
  display: grid;
  grid-template-columns: minmax(620px, 1.18fr) minmax(360px, 0.82fr);
  width: min(1200px, 100%);
  max-height: calc(100vh - 64px);
  margin: 32px 0;
  overflow: hidden;
  min-height: 0;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 34px 90px rgba(17, 24, 39, 0.32);
}
.product-detail-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92) url(../images/close.png) no-repeat center;
  background-size: 14px 14px;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(17, 24, 39, 0.12);
}
.product-detail-media {
  min-height: 0;
  max-height: calc(100vh - 64px);
  padding: 26px;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  background: radial-gradient(circle at 16% 12%, rgba(3, 114, 254, 0.18), transparent 28%), linear-gradient(135deg, #eef6ff 0%, #f8fbff 48%, #e8f7ff 100%);
}
.product-detail-media-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}
.product-detail-media-label,
.product-detail-media-type {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  line-height: 20px;
  font-weight: 800;
}
.product-detail-media-label {
  color: var(--page-blue);
  background: #fff;
}
.product-detail-media-type {
  color: #667085;
  background: rgba(255, 255, 255, 0.64);
}
.product-detail-gallery {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: minmax(320px, 1fr) minmax(136px, auto);
  gap: 14px;
  min-height: 472px;
}
.product-detail-gallery.gallery-compact {
  grid-template-rows: minmax(360px, 1fr);
}
.product-detail-gallery.gallery-video {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: auto;
}
.product-detail-gallery.gallery-video .product-detail-shot {
  width: 100%;
  min-height: 0;
}
.product-detail-gallery.gallery-video .product-detail-shot-1,
.product-detail-gallery.gallery-video .product-detail-shot-2 {
  min-height: 220px;
}
.product-detail-shot.has-video {
  padding: 0;
  align-items: stretch;
}
.product-detail-shot-video {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: inherit;
  background: #0f172a;
}
.product-detail-shot-video video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 220px;
  max-height: 280px;
  object-fit: contain;
  background: #0f172a;
}
.product-detail-shot.has-video > div {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 2;
}
.product-detail-shot {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  min-height: 0;
  padding: 22px;
  border: 1px solid rgba(3, 114, 254, 0.12);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(22, 75, 146, 0.14);
}
.product-detail-shot::before {
  content: "";
  position: absolute;
  inset: 18px 18px auto auto;
  width: 82px;
  height: 82px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(3, 114, 254, 0.16), rgba(54, 211, 153, 0.18));
}
.product-detail-shot::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  top: 24px;
  height: 44%;
  border-radius: 18px;
  background: linear-gradient(135deg, #f2f7ff, #e7f7ff);
}
.product-detail-shot.has-image,
.product-detail-shot.has-video {
  padding: 0;
  background: #f8fbff;
}
.product-detail-shot.has-image::before,
.product-detail-shot.has-image::after,
.product-detail-shot.has-video::before,
.product-detail-shot.has-video::after {
  display: none;
}
.product-detail-shot-image {
  position: absolute;
  inset: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border: 0;
  border-radius: inherit;
  background: #eef4ff;
  cursor: zoom-in;
}
.product-detail-shot-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.28s ease;
}
.product-detail-shot-image:hover img {
  transform: scale(1.025);
}
.product-detail-shot.has-image > div {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  max-width: none;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 22px rgba(17, 24, 39, 0.09);
  backdrop-filter: blur(10px);
}
.product-detail-shot-2.has-image > div,
.product-detail-shot-3.has-image > div,
.product-detail-shot-4.has-image > div {
  left: 8px;
  right: 8px;
  bottom: 8px;
  padding: 7px 8px;
}
.product-detail-shot-1 {
  grid-column: 1 / -1;
  min-height: 360px;
}
.product-detail-shot-2,
.product-detail-shot-3,
.product-detail-shot-4 {
  min-height: 136px;
}
.product-detail-shot-phone .product-detail-shot-image {
  padding: 6px 16px;
}
.product-detail-shot > div {
  position: relative;
  z-index: 1;
}
.product-detail-shot span {
  display: inline-flex;
  margin-bottom: 6px;
  padding: 4px 8px;
  border-radius: 999px;
  color: var(--page-blue);
  background: #eef6ff;
  font-size: 11px;
  line-height: 16px;
  font-weight: 800;
}
.product-detail-shot strong {
  display: block;
  margin-bottom: 4px;
  color: #111827;
  font-size: 16px;
  line-height: 22px;
  font-weight: 800;
}
.product-detail-shot p {
  margin: 0;
  color: #667085;
  font-size: 12px;
  line-height: 18px;
}
.product-detail-shot-2 strong,
.product-detail-shot-3 strong,
.product-detail-shot-4 strong {
  margin-bottom: 0;
  font-size: 13px;
  line-height: 18px;
}
.product-detail-shot-2 p,
.product-detail-shot-3 p,
.product-detail-shot-4 p,
.product-detail-shot-2 span,
.product-detail-shot-3 span,
.product-detail-shot-4 span {
  display: none;
}
.product-detail-content {
  min-height: 0;
  max-height: calc(100vh - 64px);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding: 34px 34px 28px;
}
.product-detail-heading span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--page-blue);
  background: #eef6ff;
  font-size: 13px;
  line-height: 20px;
  font-weight: 800;
}
.product-detail-heading h2 {
  margin: 0 0 14px;
  text-align: left;
  color: var(--page-text);
  font-size: 34px;
  line-height: 44px;
  font-weight: 700;
  letter-spacing: -0.015em;
}
.product-detail-heading p {
  margin: 0 0 22px;
  color: var(--page-muted);
  font-size: 15px;
  line-height: 26px;
}
.product-detail-content section {
  margin-bottom: 22px;
}
.product-detail-content section h3 {
  margin-bottom: 14px;
  color: var(--page-text);
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.product-detail-position {
  padding: 18px;
  border: 1px solid #e4efff;
  border-radius: 16px;
  color: #475467;
  background: #f7faff;
  font-size: 15px;
  line-height: 27px;
}
.product-detail-highlights {
  display: grid;
  gap: 10px;
}
.product-detail-highlights li {
  position: relative;
  list-style: none;
  padding-left: 18px;
  color: #475467;
  font-size: 15px;
  line-height: 26px;
}
.product-detail-highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--page-blue);
}
.product-detail-scenarios {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.product-detail-scenarios span {
  padding: 8px 12px;
  border: 1px solid #e4efff;
  border-radius: 999px;
  background: #fff;
  color: #344054;
  font-size: 13px;
  line-height: 20px;
  font-weight: 700;
}
.product-detail-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 18px;
  padding: 16px 18px;
  border: 1px solid #e4efff;
  border-radius: 18px;
  background: #f7faff;
}
.product-detail-actions strong {
  display: block;
  color: #111827;
  font-size: 16px;
  line-height: 24px;
}
.product-detail-actions p {
  margin: 0;
  color: #667085;
  font-size: 14px;
  line-height: 22px;
}
.product-detail-buttons {
  display: flex;
  align-items: center;
  margin-top: 4px;
}
.product-detail-buttons .page-btn {
  min-width: 0;
  width: auto;
  height: 36px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 8px 18px rgba(3, 114, 254, 0.14);
}
.choose-product-section {
  background: #fff;
}
.choose-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.choose-grid article {
  padding: 24px;
  border: 1px solid #edf1f7;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(31, 49, 94, 0.05);
}
.choose-grid strong,
.choose-grid span {
  display: block;
}
.choose-grid strong {
  margin-bottom: 10px;
  color: var(--page-text);
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.choose-grid span {
  color: var(--page-blue);
  font-size: 14px;
  line-height: 22px;
  font-weight: 700;
}
.news-center-section {
  background: #f7f9fc;
}
.news-center-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
}
.news-center-head h2 {
  font-size: 36px;
  line-height: 50px;
  color: var(--page-text);
  font-weight: 700;
  letter-spacing: -0.015em;
  text-align: left;
}
.news-tabs {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 48px;
  padding: 6px;
  border-radius: 16px;
  background: #eef2f7;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}
.news-tabs a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 18px;
  border-radius: 12px;
  color: #475467;
  font-size: 15px;
  line-height: 22px;
  font-weight: 700;
  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.news-tabs a:hover,
.news-tabs a.active {
  color: var(--page-blue);
  background: #fff;
  box-shadow: 0 8px 20px rgba(31, 49, 94, 0.08);
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
}
.news-card {
  overflow: hidden;
}
.news-center-card {
  animation: newsCardFade 0.24s ease both;
}
.news-center-card[hidden] {
  display: none;
}
.news-center-card.is-filtered-in {
  animation: newsCardFade 0.24s ease both;
}
@keyframes newsCardFade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.news-filter-empty {
  margin-top: 24px;
  padding: 28px;
  border: 1px dashed #cfe2ff;
  border-radius: 18px;
  color: #667085;
  background: #f7faff;
  text-align: center;
  font-size: 15px;
  line-height: 24px;
}
.news-center-card {
  border: 0;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(31, 49, 94, 0.07);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.news-center-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 52px rgba(31, 49, 94, 0.12);
}
.news-center-card a {
  display: flex;
  flex-direction: column;
  height: 100%;
  flex-grow: 1;
}
.news-card-cover {
  position: relative;
  height: 240px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.news-card-cover.is-photo {
  background-color: #f3f6fa;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.news-card-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.1));
}
.news-card-cover-product {
  background: linear-gradient(135deg, rgba(3, 114, 254, 0.16), rgba(255, 255, 255, 0.1)), url("../images/banner.webp") center/cover;
}
.news-card-cover-industry {
  background: linear-gradient(135deg, rgba(31, 49, 94, 0.18), rgba(255, 141, 0, 0.12)), url("../images/business.webp") center/cover;
}
.news-card-cover-dev {
  background: linear-gradient(135deg, #dcecff, #f9fbff);
}
.news-card-cover-dev::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(3, 114, 254, 0.2), transparent 28%), linear-gradient(135deg, rgba(77, 153, 255, 0.22), rgba(255, 255, 255, 0.1));
}
.news-card-tag,
.news-card-badge {
  position: absolute;
  z-index: 2;
  top: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  border-radius: 7px;
  font-size: 12px;
  line-height: 18px;
  font-weight: 800;
}
.news-card-tag {
  left: 18px;
  padding: 0 10px;
  color: var(--page-blue);
  background: rgba(255, 255, 255, 0.92);
}
.news-card-badge {
  right: 18px;
  padding: 0 8px;
  color: #fff;
  background: linear-gradient(90deg, #0372fe, #539fff);
}
.news-card-body {
  display: flex;
  min-height: 280px;
  flex-direction: column;
  padding: 32px 32px 28px;
  flex-grow: 1;
}
.news-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  color: #98a2b3;
  font-size: 13px;
  line-height: 20px;
  font-weight: 700;
}
.news-card-body h3 {
  color: var(--page-text);
  font-size: 24px;
  line-height: 36px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 16px;
  transition: color 0.2s ease;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: calc(36px * 2);
}
.news-card-body p {
  color: #667085;
  font-size: 17px;
  line-height: 30px;
  font-weight: 500;
  margin-bottom: 28px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: calc(30px * 3);
}
.news-card-more {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  color: #111827;
  font-size: 15px;
  line-height: 24px;
  font-weight: 800;
  transition: color 0.2s ease;
}
.news-card-more i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  color: #98a2b3;
  background: #f6f8fb;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.news-center-card:hover .news-card-body h3,
.news-center-card:hover .news-card-more {
  color: var(--page-blue);
}
.news-center-card:hover .news-card-more i {
  color: #fff;
  background: var(--page-blue);
  transform: translateX(4px);
}
.news-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 54px;
  padding: 10px 0 0;
}
.news-pagination a,
.news-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  border: 1px solid #e4eaf3;
  border-radius: 10px;
  background: #fff;
  color: #475467;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  box-shadow: 0 8px 18px rgba(31, 49, 94, 0.04);
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.news-pagination a:first-child,
.news-pagination a:last-child {
  min-width: 82px;
  padding: 0 16px;
}
.news-pagination a:hover {
  color: var(--page-blue);
  border-color: #bfdcff;
  box-shadow: 0 12px 24px rgba(3, 114, 254, 0.1);
  transform: translateY(-1px);
}
.news-pagination a.active {
  color: #fff;
  border-color: var(--page-blue);
  background: linear-gradient(90deg, var(--page-blue) 0%, var(--page-blue-2) 100%);
  box-shadow: 0 12px 24px rgba(3, 114, 254, 0.18);
}
.news-pagination a.disabled {
  cursor: not-allowed;
  color: #c0c7d2;
  border-color: #edf1f7;
  background: #f8fafc;
  box-shadow: none;
  pointer-events: none;
}
.news-pagination span {
  min-width: 28px;
  border-color: transparent;
  background: transparent;
  color: #98a2b3;
  box-shadow: none;
}
.article-wrap {
  max-width: 860px;
  margin: 0 auto;
}
.article-header {
  padding: 70px 0 42px;
  text-align: center;
}
.article-header .news-meta {
  justify-content: center;
}
.article-header h1 {
  font-size: 46px;
  line-height: 1.25;
  color: var(--page-text);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 20px 0;
}
.article-header p {
  font-size: 20px;
  color: var(--page-muted);
  line-height: 1.8;
}
.article-cover {
  height: 360px;
  border-radius: 28px;
  background: linear-gradient(135deg, #dcecff, #f8fbff);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--page-blue);
  font-size: 82px;
  margin-bottom: 50px;
}
.article-content {
  font-size: 18px;
  line-height: 2;
  color: #475467;
}
.article-content h2 {
  text-align: left;
  color: #17233d;
  font-size: 28px;
  margin: 42px 0 16px;
}
.article-content p {
  margin-bottom: 20px;
}
.article-content blockquote {
  margin: 36px 0;
  padding: 28px 32px;
  border-left: 4px solid var(--page-blue);
  border-radius: 16px;
  background: #f5f9ff;
  color: #17233d;
  font-weight: 700;
}
.page-cta {
  padding: 60px;
  border-radius: 30px;
  background: linear-gradient(135deg, #17233d, #1f5fbf);
  color: #fff;
  text-align: center;
}
.page-cta h2 {
  color: #fff;
  margin-bottom: 12px;
}
.page-cta p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 28px;
}
.news-detail-page {
  background: #fff;
  padding: 34px 0 80px;
}
.news-detail-article {
  width: min(760px, calc(100vw - 40px));
  margin: 0 auto;
}
.news-detail-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 26px;
  font-size: 13px;
  line-height: 20px;
  color: #98a2b3;
}
.news-detail-breadcrumb a {
  color: #667085;
}
.news-detail-breadcrumb a:hover,
.news-detail-breadcrumb strong {
  color: var(--page-blue);
  font-weight: 600;
}
.news-detail-header {
  display: block;
  position: static;
  width: auto;
  height: auto;
  margin: 0 0 30px;
  text-align: left;
  align-items: initial;
  justify-content: initial;
}
.news-detail-category {
  display: inline-flex;
  align-items: center;
  height: 26px;
  padding: 0 12px;
  border-radius: 999px;
  background: #eef6ff;
  color: var(--page-blue);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
}
.news-detail-header h1 {
  margin: 0 0 16px;
  font-size: 38px;
  line-height: 1.28;
  color: var(--page-text);
  font-weight: 700;
  letter-spacing: -0.015em;
}
.news-detail-header p {
  margin: 0 0 24px;
  font-size: 17px;
  line-height: 1.8;
  color: #667085;
}
.news-detail-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 24px;
  font-size: 13px;
  line-height: 20px;
  color: #98a2b3;
}
.news-detail-cover {
  margin: 0 0 42px;
}
.news-detail-cover img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain;
  background: #f3f6fa;
  border-radius: 14px;
  box-shadow: 0 20px 46px rgba(31, 49, 94, 0.12);
}
.news-detail-cover figcaption {
  margin-top: 10px;
  text-align: center;
  font-size: 12px;
  line-height: 18px;
  color: #98a2b3;
}
.news-detail-content {
  font-size: 16px;
  line-height: 2;
  color: #344054;
}
.news-detail-content p {
  margin: 0 0 24px;
}
/* 天气动态 Word 原文件前端渲染（docx-preview，对齐中央气象台公报版式） */
.news-detail-page--docx {
  background: #fff;
  padding: 24px 0 64px;
}
.news-detail-page--docx .news-detail-article {
  width: min(960px, calc(100vw - 48px));
}
.news-detail-page--docx .weather-doc-breadcrumb {
  margin-bottom: 18px;
  font-size: 14px;
  color: #666;
}
/* 页眉（HTML / docx 共用，须在 viewer 容器外也生效） */
.news-detail-article--docx .nmc-doc-header-block {
  display: block;
  width: 100%;
  margin: 0 0 24px;
  text-align: center;
}
.news-detail-article--docx .nmc-doc-header-block .nmc-doc-title {
  display: block;
  width: 100%;
  margin: 0 0 14px;
  text-align: center !important;
  font-size: 32px;
  font-weight: 700;
  color: #c8161d !important;
  line-height: 1.35;
  white-space: nowrap;
  letter-spacing: normal;
}
.news-detail-article--docx .nmc-doc-header-block .nmc-doc-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5em;
  width: 100%;
  margin: 0 0 18px;
  padding: 0 0 14px;
  text-align: center !important;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8;
  color: #333;
  border-bottom: 1px solid #d9d9d9;
}
.news-detail-article--docx .nmc-doc-header-block .nmc-doc-agency,
.news-detail-article--docx .nmc-doc-header-block .nmc-doc-datetime {
  font-weight: 700;
  color: #333;
}
.weather-docx-viewer-wrap {
  margin-top: 0;
  width: 100%;
}
.weather-docx-viewer.docx-viewer-host.is-rendering {
  visibility: hidden;
  height: 0;
  overflow: hidden;
}
.weather-doc-html {
  font-size: 14px;
  line-height: 1.85;
  color: #333;
}
.weather-docx-viewer.docx-viewer-host {
  overflow-x: visible;
  width: 100%;
  background: #fff;
  border: none;
  border-radius: 0;
  padding: 0;
}
.weather-doc-html .nmc-doc-footer,
.weather-doc-html p.nmc-doc-footer,
.weather-docx-viewer.docx-viewer-host .nmc-doc-footer,
.weather-docx-viewer.docx-viewer-host p.nmc-doc-footer,
.weather-docx-viewer.docx-viewer-host td.nmc-doc-footer,
.weather-docx-viewer.docx-viewer-host tr.nmc-doc-footer {
  display: block;
  margin-top: 8px;
  padding: 0;
  text-align: center !important;
  font-size: 14px;
  line-height: 1.8;
  color: #555;
  border-top: none;
}
.weather-docx-viewer.docx-viewer-host .nmc-doc-footer:first-of-type,
.weather-doc-html .nmc-doc-footer:first-of-type {
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid #e8e8e8;
}
/* 正文区通用（HTML / docx 统一） */
.weather-doc-body,
.weather-doc-html,
.weather-docx-viewer.docx-viewer-host {
  font-family: "Microsoft YaHei", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.85;
  color: #333;
}
.weather-doc-body p,
.weather-doc-html p {
  margin: 0 0 14px;
  text-align: justify;
  text-justify: inter-ideograph;
}
.weather-doc-body .nmc-doc-lead,
.weather-doc-html .nmc-doc-lead {
  margin: 10px 0 12px;
  text-align: center !important;
  font-size: 15px;
  font-weight: 700;
  color: #111;
  line-height: 1.6;
}
.weather-doc-body .nmc-doc-subhead,
.weather-doc-html .nmc-doc-subhead {
  margin: 10px 0 12px;
  text-align: left !important;
  font-size: 15px;
  font-weight: 700;
  color: #111;
  line-height: 1.6;
}
.weather-doc-body .nmc-doc-summary-label,
.weather-doc-html .nmc-doc-summary-label {
  margin: 20px 0 10px;
  font-weight: 700;
  color: #111;
}
.weather-doc-body .nmc-doc-summary,
.weather-doc-html .nmc-doc-summary {
  margin: 0 0 20px;
  padding: 14px 18px;
  border-left: 4px solid #c8161d;
  background: #fafafa;
  font-weight: 700;
  color: #111;
  text-align: justify;
}
.weather-doc-body h2,
.weather-doc-html h2 {
  margin: 28px 0 14px;
  font-size: 15px;
  font-weight: 700;
  color: #111;
  text-align: left;
}
.weather-doc-body h3,
.weather-doc-html h3 {
  margin: 18px 0 10px;
  font-size: 14px;
  font-weight: 700;
  color: #111;
  text-align: left !important;
}
.weather-doc-body .nmc-weather-figure,
.weather-doc-html .nmc-weather-figure,
.weather-doc-html p:has(img),
.weather-docx-viewer--webu .nmc-weather-figure,
.weather-docx-viewer--webu.docx-viewer-host p:has(img),
.weather-docx-viewer--webu.docx-viewer-host td:has(img) {
  display: block;
  text-align: center !important;
  margin: 18px auto;
  width: 100%;
}
.weather-doc-body img,
.weather-doc-html img,
.weather-doc-html .nmc-weather-figure img,
.weather-docx-viewer--webu.docx-viewer-host img.nmc-weather-map,
.weather-docx-viewer--webu.docx-viewer-host .nmc-weather-figure img {
  display: block !important;
  width: auto !important;
  max-width: min(920px, 100%) !important;
  height: auto !important;
  margin: 0 auto !important;
  float: none !important;
}
.weather-doc-body .nmc-fig-caption,
.weather-doc-html .nmc-fig-caption,
.weather-docx-viewer.docx-viewer-host .nmc-fig-caption {
  margin: 6px 0 18px;
  text-align: center !important;
  font-size: 13px;
  line-height: 1.6;
  color: #666;
}
/* docx 文首表头由 JS 移除，避免 display:none 残留半截红线 */
.weather-docx-viewer.docx-viewer-host .docx-wrapper {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0;
  background: #fff;
  box-shadow: none;
  padding: 0;
}
.weather-docx-viewer.docx-viewer-host section.docx {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  min-height: 0 !important;
  margin: 0 0 12px;
  padding: 0 !important;
  box-shadow: none;
  border: none;
}
.weather-docx-viewer.docx-viewer-host article {
  width: 100% !important;
  max-width: 100% !important;
  column-count: 1 !important;
}
.weather-docx-viewer.docx-viewer-host p {
  margin: 0 0 14px;
  text-align: justify;
  text-justify: inter-ideograph;
  font-size: 14px;
  line-height: 1.85;
  color: #333;
}
.weather-docx-viewer.docx-viewer-host p:has(img),
.weather-docx-viewer.docx-viewer-host td:has(img),
.weather-docx-viewer.docx-viewer-host div:has(img) {
  text-align: center !important;
  width: 100% !important;
}
.weather-docx-viewer.docx-viewer-host p strong,
.weather-docx-viewer.docx-viewer-host p b,
.weather-docx-viewer.docx-viewer-host strong,
.weather-docx-viewer.docx-viewer-host b {
  font-weight: 700;
  color: #111;
}
.weather-docx-viewer.docx-viewer-host table {
  width: 100% !important;
  max-width: 100% !important;
  border-collapse: collapse;
}
.weather-docx-viewer.docx-viewer-host .nmc-doc-header-block {
  display: block;
  width: 100%;
  margin: 0 0 24px;
  text-align: center;
}
.weather-docx-viewer.docx-viewer-host .nmc-doc-header-block .nmc-doc-title {
  display: block;
  width: 100%;
  margin: 0 0 14px;
  text-align: center !important;
  font-size: 32px;
  font-weight: 700;
  color: #c8161d !important;
  line-height: 1.35;
  white-space: nowrap;
  letter-spacing: normal;
}
.weather-docx-viewer.docx-viewer-host table:has(.nmc-doc-footer),
.weather-docx-viewer.docx-viewer-host table:has(td.nmc-doc-footer) {
  width: 100% !important;
  margin: 24px auto 0 !important;
  border: none !important;
  border-top: 1px solid #e8e8e8 !important;
}
.weather-docx-viewer.docx-viewer-host table:has(.nmc-doc-footer) td,
.weather-docx-viewer.docx-viewer-host table:has(td.nmc-doc-footer) td {
  text-align: center !important;
  border: none !important;
  padding: 8px 0 !important;
}
.weather-docx-viewer.docx-viewer-host .nmc-doc-meta,
.weather-docx-viewer.docx-viewer-host .nmc-doc-header-block .nmc-doc-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5em;
  width: 100%;
  margin: 0 0 18px;
  padding: 0 0 14px;
  text-align: center !important;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8;
  color: #333;
  border-bottom: 1px solid #d9d9d9;
}
/* 天气公报：Word 正文配图强制居中 */
.weather-docx-viewer--webu.docx-viewer-host .nmc-weather-figure--webu {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: 100% !important;
  margin: 18px auto !important;
  padding: 0 !important;
  border: none !important;
  text-align: center !important;
  float: none !important;
  clear: both !important;
}
.weather-docx-viewer--webu.docx-viewer-host .nmc-weather-figure--webu img,
.weather-docx-viewer--webu.docx-viewer-host img.nmc-weather-map {
  display: block !important;
  width: auto !important;
  max-width: min(920px, 100%) !important;
  height: auto !important;
  margin: 0 auto !important;
  float: none !important;
  position: static !important;
}
.weather-docx-viewer--webu.docx-viewer-host p:has(.nmc-weather-figure--webu),
.weather-docx-viewer--webu.docx-viewer-host p:has(> img),
.weather-docx-viewer--webu.docx-viewer-host td:has(img) {
  display: block !important;
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding: 0 !important;
  border: none !important;
  text-align: center !important;
}
.weather-docx-viewer--mtfc.docx-viewer-host .nmc-doc-footer-rule,
.weather-docx-viewer--webu.docx-viewer-host .nmc-doc-footer-rule {
  display: block !important;
  width: 100% !important;
  margin: 28px auto 14px !important;
  padding: 0 !important;
  text-align: center !important;
  border: none !important;
}
.weather-docx-viewer--mtfc.docx-viewer-host .nmc-doc-footer-rule:not(:has(img))::before,
.weather-docx-viewer--webu.docx-viewer-host .nmc-doc-footer-rule:not(:has(img))::before {
  content: '';
  display: block;
  width: min(420px, 72%);
  margin: 0 auto;
  border-top: 2px solid #333;
}
.weather-docx-viewer--mtfc.docx-viewer-host .nmc-doc-footer-rule-img,
.weather-docx-viewer--webu.docx-viewer-host .nmc-doc-footer-rule-img {
  display: block !important;
  width: auto !important;
  max-width: min(420px, 72%) !important;
  height: auto !important;
  margin: 0 auto !important;
  float: none !important;
}
.weather-docx-viewer--mtfc.docx-viewer-host .nmc-weather-figure,
.weather-docx-viewer--mtfc.docx-viewer-host p.nmc-weather-figure,
.weather-docx-viewer--mtfc.docx-viewer-host .nmc-weather-figure img,
.weather-docx-viewer--mtfc.docx-viewer-host p.nmc-weather-figure img {
  display: block !important;
  width: auto !important;
  max-width: min(920px, 100%) !important;
  height: auto !important;
  margin: 16px auto !important;
  float: none !important;
  text-align: center !important;
}
.weather-docx-viewer.docx-viewer-host .nmc-weather-figure,
.weather-docx-viewer.docx-viewer-host p.nmc-weather-figure,
.weather-docx-viewer.docx-viewer-host td.nmc-weather-figure {
  text-align: center !important;
  width: 100% !important;
}
.weather-docx-viewer.docx-viewer-host .nmc-fig-caption {
  margin: 0 0 18px;
  text-align: center !important;
  font-size: 13px;
  line-height: 1.6;
  color: #666;
}
.weather-docx-viewer.docx-viewer-host iframe {
  width: 100%;
  border: none;
  min-height: 480px;
}

.news-detail-content strong {
  font-weight: 700;
  color: #111827;
}
.news-detail-content img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto 24px;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(31, 49, 94, 0.08);
}
.news-detail-content h2 {
  margin: 44px 0 18px;
  text-align: left;
  font-size: 24px;
  line-height: 1.45;
  color: #111827;
  font-weight: 800;
}
.news-detail-content blockquote {
  margin: 34px 0;
  padding: 22px 26px;
  border-radius: 12px;
  border-left: 4px solid var(--page-blue);
  background: #f7faff;
  color: #1f315e;
  font-size: 16px;
  line-height: 1.9;
  font-weight: 700;
}
.news-detail-content ul {
  margin: 0 0 28px;
  padding-left: 0;
}
.news-detail-content li {
  list-style: none;
  position: relative;
  padding-left: 18px;
  margin-bottom: 13px;
  line-height: 1.9;
}
.news-detail-content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--page-blue);
}
.news-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid #eef2f7;
}
.news-detail-tags span {
  display: inline-flex;
  align-items: center;
  height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: #f2f4f7;
  color: #667085;
  font-size: 13px;
  font-weight: 600;
}
.related-news-section {
  width: min(900px, calc(100vw - 40px));
  margin: 78px auto 0;
  padding-top: 42px;
  border-top: 1px solid #eef2f7;
}
.related-news-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.related-news-head h2 {
  text-align: left;
  font-size: 22px;
  line-height: 32px;
  color: #111827;
  font-weight: 800;
}
.related-news-head a {
  font-size: 14px;
  color: var(--page-blue);
  font-weight: 700;
}
.related-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.related-news-card {
  overflow: hidden;
  border: 1px solid #edf1f7;
  border-radius: 14px;
  background: #fff;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}
.related-news-card:hover {
  transform: translateY(-4px);
  border-color: #d6e6ff;
  box-shadow: 0 18px 38px rgba(31, 49, 94, 0.1);
}
.related-news-cover {
  height: 118px;
  background-size: cover;
  background-position: center;
}
.related-news-cover.is-photo {
  background-color: #f3f6fa;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.related-news-cover-1 {
  background-image: linear-gradient(135deg, rgba(3, 114, 254, 0.06), rgba(3, 114, 254, 0.1)), url(../images/banner.webp);
}
.related-news-cover-2 {
  background-image: linear-gradient(135deg, rgba(31, 49, 94, 0.08), rgba(3, 114, 254, 0.12)), url(../images/business.webp);
}
.related-news-cover-3 {
  background: linear-gradient(135deg, #dcecff, #f8fbff);
}
.related-news-body {
  padding: 14px 16px 18px;
}
.related-news-body span {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  line-height: 18px;
  color: #98a2b3;
}
.related-news-body h3 {
  font-size: 15px;
  line-height: 1.55;
  color: #111827;
  font-weight: 700;
}
.related-news-card:hover h3 {
  color: var(--page-blue);
}
@media (max-width: 1240px) {
  :root { --con-width: calc(100vw - 40px); }
  .page-header-inner,
  .page-container {
    width: var(--con-width);
  }
  .page-nav {
    gap: 22px;
    max-width: calc(100vw - 220px);
    overflow-x: auto;
    scrollbar-width: none;
  }
  .page-nav::-webkit-scrollbar {
    display: none;
  }
  .page-nav a {
    white-space: nowrap;
  }
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .article-wrap {
    width: min(860px, calc(100vw - 40px));
  }
  .related-news-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 900px) {
  .page-body > header,
  .page-header-inner { height: auto; }
  .page-header-inner {
    padding: 14px 0;
    align-items: flex-start;
    gap: 14px;
    flex-direction: column;
  }
  .page-nav {
    width: 100%;
    max-width: 100%;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 4px;
  }
  .page-hero {
    height: 360px;
    padding: 0;
  }
  .page-hero h1 {
    max-width: 100%;
    font-size: 36px;
    line-height: 1.25;
  }
  .page-hero p {
    max-width: 100%;
    font-size: 17px;
    line-height: 1.75;
  }
  .page-hero-actions {
    flex-wrap: wrap;
  }
  .news-center-head {
    align-items: flex-start;
    gap: 20px;
    flex-direction: column;
    margin-bottom: 34px;
  }
  .news-tabs {
    max-width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .news-tabs::-webkit-scrollbar {
    display: none;
  }
  .news-grid,
  .related-news-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .product-detail-modal {
    grid-template-columns: 1fr;
    max-height: none;
    margin: 16px 0;
  }
  .product-detail-content,
  .product-detail-media {
    max-height: none;
  }
  .product-detail-media {
    min-height: 0;
  }
  .product-detail-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    min-height: auto;
  }
  .product-detail-shot-1,
  .product-detail-shot-2,
  .product-detail-shot-3,
  .product-detail-shot-4 {
    grid-row: auto;
    min-height: 210px;
  }
  .product-detail-content {
    padding: 34px 28px 28px;
  }
  .product-detail-actions {
    padding: 14px 16px;
  }
  .product-detail-buttons {
    margin-top: 2px;
  }
  .product-line-grid,
  .product-list.product-list-3,
  .ai-product-grid,
  .choose-grid,
  .card-grid,
  .product-list,
  .product-layout,
  .metric-band {
    grid-template-columns: 1fr;
  }
  .ai-product-subgrid {
    grid-template-columns: 1fr;
  }
  .ai-roadmap {
    align-items: stretch;
    flex-direction: column;
  }
  .ai-roadmap i {
    width: 1px;
    height: 24px;
    min-width: 0;
    margin-left: 10px;
  }
  .product-side { position: static; }
  .section-head {
    margin-bottom: 38px;
  }
  .section-head h2 { font-size: 32px; }
  .section-head p { font-size: 16px; }
  .page-section { padding: 58px 0; }
  .solution-card,
  .product-card,
  .news-content,
  .category-panel {
    padding: 24px;
  }
  .article-header {
    padding: 54px 0 34px;
  }
  .article-header h1 { font-size: 34px; }
  .article-header p { font-size: 17px; }
  .article-cover {
    height: 240px;
    font-size: 62px;
  }
  .article-content {
    font-size: 16px;
    line-height: 1.9;
  }
  .article-content h2 {
    font-size: 24px;
  }
  .page-cta {
    padding: 36px 20px;
    border-radius: 24px;
  }
}
@media (max-width: 600px) {
  :root { --con-width: calc(100vw - 32px); }
  .page-header-inner .logo {
    width: 126px;
    height: auto;
  }
  .page-nav a {
    font-size: 14px;
  }
  .page-hero {
    height: 340px;
    padding: 0;
  }
  .page-kicker {
    font-size: 13px;
    padding: 7px 12px;
  }
  .page-hero h1 {
    font-size: 30px;
    letter-spacing: -0.4px;
  }
  .page-hero p {
    font-size: 16px;
  }
  .page-btn {
    width: 100%;
    min-width: 0;
  }
  .page-section {
    padding: 46px 0;
  }
  .section-head h2 {
    font-size: 28px;
  }
  .product-advice-overlay,
  .product-detail-overlay {
    padding: 16px;
  }
  .product-advice-modal {
    padding: 28px 20px 22px;
    border-radius: 22px;
  }
  .product-advice-form .form-grid {
    grid-template-columns: 1fr;
  }
  .product-advice-actions {
    flex-direction: column;
  }
  .product-detail-media {
    padding: 18px;
  }
  .product-detail-media-top {
    align-items: flex-start;
    flex-direction: column;
  }
  .product-detail-gallery {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .product-detail-shot,
  .product-detail-shot-1,
  .product-detail-shot-2,
  .product-detail-shot-3 {
    grid-row: auto;
    min-height: 190px;
  }
  .product-detail-shot strong {
    font-size: 20px;
    line-height: 28px;
  }
  .product-detail-heading h2 {
    font-size: 28px;
    line-height: 38px;
  }
  .product-detail-buttons,
  .product-detail-buttons .page-btn {
    width: 100%;
  }
  .product-line-card,
  .ai-product-card {
    min-height: auto;
    padding: 24px;
    border-radius: 22px;
  }
  .product-section-title h2 {
    font-size: 30px;
    line-height: 42px;
  }
  .product-section-title p {
    font-size: 16px;
    line-height: 28px;
  }
  .product-list-3 .product-card {
    min-height: auto;
    padding: 22px;
  }
  .ai-product-card h3,
  .product-line-card h3 {
    font-size: 26px;
    line-height: 36px;
  }
  .choose-grid article {
    padding: 20px;
  }
  .solution-card,
  .product-card,
  .news-content,
  .category-panel {
    padding: 20px;
    border-radius: 18px;
  }
  .solution-card h3,
  .product-card h3,
  .info-card h3 {
    font-size: 21px;
  }
  .metric-band {
    padding: 22px;
  }
  .metric-band strong {
    font-size: 28px;
  }
  .news-center-head h2 {
    font-size: 28px;
    line-height: 40px;
  }
  .news-tabs {
    height: 44px;
    padding: 5px;
  }
  .news-tabs a {
    height: 34px;
    padding: 0 14px;
    font-size: 13px;
  }
  .news-card-cover {
    height: 176px;
  }
  .news-card-body {
    min-height: auto;
    padding: 22px 22px 20px;
  }
  .news-card-meta {
    flex-wrap: wrap;
    gap: 6px 12px;
  }
  .news-card-body h3 {
    font-size: 20px;
    line-height: 30px;
    max-height: calc(30px * 2);
    -webkit-line-clamp: 2;
  }
  .news-card-body p {
    font-size: 14px;
    line-height: 24px;
    max-height: calc(24px * 3);
    -webkit-line-clamp: 3;
  }
  .article-header h1 {
    font-size: 28px;
  }
  .article-cover {
    height: 190px;
    border-radius: 20px;
  }
  .article-content blockquote {
    padding: 22px;
  }
  .news-detail-page--docx .news-detail-article {
    width: calc(100vw - 24px);
  }
  .news-detail-article--docx .nmc-doc-header-block .nmc-doc-title,
  .weather-docx-viewer.docx-viewer-host .nmc-doc-header-block .nmc-doc-title {
    font-size: 24px;
    white-space: normal;
    word-spacing: 0.35em;
  }
  .news-detail-page {
    padding: 24px 0 56px;
  }
  .news-detail-article,
  .related-news-section {
    width: calc(100vw - 32px);
  }
  .news-detail-breadcrumb {
    flex-wrap: wrap;
    margin-bottom: 20px;
  }
  .news-detail-header h1 {
    font-size: 28px;
    line-height: 1.35;
    letter-spacing: -0.3px;
  }
  .news-detail-header p {
    font-size: 16px;
  }
  .news-detail-cover img {
    max-height: 280px;
    border-radius: 12px;
  }
  .news-detail-content {
    font-size: 15px;
    line-height: 1.9;
  }
  .news-detail-content h2 {
    font-size: 22px;
  }
  .related-news-head {
    align-items: flex-start;
    gap: 12px;
    flex-direction: column;
  }
  .related-news-grid {
    grid-template-columns: 1fr;
  }
  .page-cta h2 {
    font-size: 26px;
    line-height: 36px;
  }
  .page-cta p {
    font-size: 16px;
  }
}

/* ========================================== */
/* START: 产品能力对比矩阵样式 (可删除此区域进行回退) */
/* ========================================== */
.product-matrix-section {
  background: #fff;
}
.matrix-table-wrapper {
  width: 100%;
  overflow-x: auto;
  border-radius: 20px;
  border: 1px solid #e4efff;
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.04);
  background: #fff;
}
.matrix-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 900px;
}
.matrix-table th,
.matrix-table td {
  padding: 24px;
  border-bottom: 1px solid #e4efff;
  vertical-align: top;
  font-size: 14px;
  line-height: 22px;
  color: #475467;
}
.matrix-table th {
  background: #f7faff;
  color: #111827;
  font-weight: 800;
  border-bottom: 2px solid #d0e4ff;
}
.matrix-table th:first-child,
.matrix-table td:first-child {
  position: sticky;
  left: 0;
  background: #f7faff;
  z-index: 2;
  width: 160px;
  min-width: 160px;
  border-right: 1px solid #e4efff;
  font-weight: 800;
  color: #111827;
}
.matrix-table td:first-child {
  background: #fff;
}
.matrix-table tr:hover td {
  background-color: #fcfdfe;
}
.matrix-table tr:hover td:first-child {
  background-color: #f7faff;
}
.matrix-head-cell {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.matrix-head-cell p {
  margin: 0;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  color: #667085;
}
.matrix-tier {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}
.matrix-tier.base {
  color: #344054;
  background: #f2f4f7;
  border: 1px solid #eaecf0;
}
.matrix-tier.hot {
  color: var(--page-blue);
  background: #eef6ff;
  border: 1px solid #d0e4ff;
}
.matrix-tier.pro {
  color: #027a48;
  background: #ecfdf3;
  border: 1px solid #abefc6;
}
.matrix-tier.custom {
  color: #b93815;
  background: #fef3f2;
  border: 1px solid #fee4e2;
}
.matrix-dim {
  font-weight: 800;
  color: #111827;
}
@media (max-width: 768px) {
  .matrix-table th,
  .matrix-table td {
    padding: 16px;
    font-size: 13px;
  }
}
/* ========================================== */
/* END: 产品能力对比矩阵样式 (可删除此区域进行回退) */
/* ========================================== */

/* ==========================================================================
   START: 行业解决方案交互式展示大面板样式
   ========================================================================== */

/* 大容器与定位 */
.solutions-showcase {
  margin-top: 48px;
  width: 100%;
}

/* 选项卡按钮栏包装器 */
.showcase-tabs-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.showcase-tabs {
  display: inline-flex;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(23, 35, 61, 0.05);
  border: 1px solid rgba(23, 35, 61, 0.08);
  max-width: 100%;
  overflow-x: auto;
  scrollbar-width: none; /* Firefox */
}
.showcase-tabs::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

/* 单个 Tab 按钮 */
.showcase-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 999px;
  border: none;
  background: transparent;
  color: #475467;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.showcase-tab:hover {
  color: var(--page-blue);
  background: rgba(255, 255, 255, 0.6);
}

.showcase-tab.is-active {
  color: #fff;
  background: #17233d;
  box-shadow: 0 10px 20px rgba(23, 35, 61, 0.15);
  transform: scale(1.02);
}

.showcase-tab .tab-icon {
  font-size: 18px;
}

/* 面板主体容器 */
.showcase-panels {
  position: relative;
  background: #fff;
  border-radius: 28px;
  border: 1px solid #eef3f9;
  box-shadow: 0 30px 70px rgba(31, 49, 94, 0.06);
  overflow: hidden;
}

/* 面板项 */
.showcase-panel {
  display: none;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.showcase-panel.is-active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* 面板左右分栏 */
.panel-content {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  min-height: 520px;
}

/* 左侧信息 */
.panel-left {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.panel-kicker {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: #edf6ff;
  color: var(--page-blue);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 20px;
}

.panel-title {
  font-size: 32px;
  line-height: 1.3;
  color: var(--page-text);
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 18px;
}

.panel-desc {
  font-size: 16px;
  line-height: 1.8;
  color: #667085;
  margin-bottom: 28px;
}

.panel-highlights-title {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #98a2b3;
  font-weight: 800;
  margin-bottom: 16px;
  border-bottom: 1px dashed #e6edf5;
  padding-bottom: 8px;
}

/* 核心特性列表 */
.panel-features {
  display: grid;
  gap: 16px;
  margin-bottom: 28px;
}

.panel-features li {
  list-style: none;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.panel-features .feature-marker {
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}

.panel-features div strong {
  display: block;
  font-size: 15px;
  color: #17233d;
  font-weight: 700;
  margin-bottom: 4px;
}

.panel-features div p {
  font-size: 14px;
  line-height: 1.6;
  color: #667085;
  margin: 0;
}

/* 推荐产品标签 */
.panel-products {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
  padding: 12px 16px;
  background: #f8fbff;
  border-radius: 12px;
  border: 1px solid #ebf3ff;
}

.product-tag-label {
  font-size: 13px;
  color: #475467;
  font-weight: 700;
}

.product-badge {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 6px;
  background: #fff;
  border: 1px solid #dbeafe;
  color: var(--page-blue);
  font-weight: 600;
}

.panel-actions .page-btn {
  height: 44px;
  font-size: 16px;
  padding: 0 28px;
}

/* 右侧图文大背景 */
.panel-right {
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.panel-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1.4;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.showcase-panel.is-active .visual-img {
  transform: scale(1.02);
}

.visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.45) 100%);
}

/* 控制台毛玻璃卡片 */
.visual-glass-card {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  padding: 20px 24px;
  color: #fff;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  animation: floatGlassCard 1s ease-out;
}

@keyframes floatGlassCard {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.glass-header {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 8px;
}

.glass-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.glass-dot.red { background: #ff5f56; }
.glass-dot.yellow { background: #ffbd2e; }
.glass-dot.green { background: #27c93f; }

.glass-content {
  display: flex;
  flex-direction: column;
}

.glass-stat {
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, #ffffff 0%, #a5cfff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 4px;
}

.glass-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}

.glass-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin-bottom: 12px;
}

.glass-quote {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  font-style: italic;
  letter-spacing: 0.02em;
}

/* ==========================================================================
   响应式断点控制
   ========================================================================== */
@media (max-width: 1024px) {
  .panel-content {
    grid-template-columns: 1fr;
  }
  .panel-left {
    padding: 36px;
  }
  .panel-right {
    padding: 0 36px 36px;
    display: block;
  }
  .panel-visual {
    min-height: auto;
    height: auto;
  }
  .panel-title {
    font-size: 28px;
  }
  .showcase-tabs {
    padding: 6px;
  }
  .showcase-tab {
    padding: 8px 18px;
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .showcase-tabs-wrapper {
    margin-bottom: 24px;
    justify-content: flex-start;
  }
  .showcase-tabs {
    width: 100%;
    border-radius: 12px;
    padding: 6px;
    gap: 4px;
  }
  .showcase-tab {
    padding: 8px 14px;
    font-size: 13px;
    border-radius: 8px;
  }
  .showcase-tab.is-active {
    border-radius: 8px;
  }
  .panel-left {
    padding: 24px;
  }
  .panel-right {
    padding: 0 24px 24px;
    display: block;
  }
  .panel-visual {
    min-height: auto;
    height: auto;
  }
  .visual-glass-card {
    bottom: 16px;
    left: 16px;
    right: 16px;
    padding: 16px;
  }
  .glass-stat {
    font-size: 28px;
  }
  .glass-quote {
    font-size: 13px;
  }
  .panel-title {
    font-size: 24px;
  }
  .panel-desc {
    font-size: 15px;
  }
}

/* ==========================================================================
   END: 行业解决方案交互式展示大面板样式
   ========================================================================= */

/* ==========================================================================
   START: 资讯板块视觉设计师精细化打磨样式
   ========================================================================== */

/* 新闻卡片封面悬浮缩放动效 */
.news-card-cover {
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.news-center-card:hover .news-card-cover {
  transform: scale(1.03);
}

/* 新闻卡片分类标签彩色视觉系统 */
.news-card-tag.tag-天气动态 {
  color: #0372fe !important;
  background: #edf5ff !important;
  border: 1px solid #d0e4ff !important;
}
.news-card-tag.tag-产品动态 {
  color: #8a3ffc !important;
  background: #f4f0ff !important;
  border: 1px solid #e8daff !important;
}
.news-card-tag.tag-技术分享 {
  color: #0f62fe !important;
  background: #edf3ff !important;
  border: 1px solid #d0e1ff !important;
}
.news-card-tag.tag-行业资讯 {
  color: #da1e28 !important;
  background: #fff0f1 !important;
  border: 1px solid #ffd0d5 !important;
}
.news-card-tag.tag-气象科普 {
  color: #007d79 !important;
  background: #e5f6f4 !important;
  border: 1px solid #c8ece7 !important;
}

/* 详情页排版细节优化 */
.news-detail-content blockquote {
  position: relative;
  padding: 16px 24px;
  background: #f8fbff;
  border-left: 4px solid var(--page-blue);
  border-radius: 0 12px 12px 0;
  font-size: 16px;
  line-height: 1.8;
  color: #344054;
  margin: 32px 0;
}
.news-detail-content h2 {
  font-size: 26px;
  line-height: 38px;
  color: #17233d;
  font-weight: 800;
  margin-top: 40px;
  margin-bottom: 18px;
}
.news-detail-content ul {
  padding-left: 20px;
  margin: 20px 0;
}
.news-detail-content li {
  font-size: 16px;
  line-height: 1.8;
  color: #475467;
  margin-bottom: 12px;
}
.news-detail-content p {
  margin-bottom: 22px;
}

/* ==========================================================================
   END: 资讯板块视觉设计师精细化打磨样式
   ========================================================================== */

/* ==========================================================================
   START: 产品介绍页面（products.html）视觉与交互微交互打磨样式
   ========================================================================== */

/* 1. 莫兰迪彩色渐变徽章系统 */
.product-card small,
.product-detail-heading span[data-product-status],
.matrix-tier {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 12px !important;
  border-radius: 999px !important;
  font-size: 11px !important;
  line-height: 16px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  border: 1px solid transparent !important;
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1) !important;
  box-sizing: border-box !important;
}

.tier-base,
.matrix-tier.base {
  color: #3b5b8c !important;
  background: linear-gradient(135deg, #eef4fc 0%, #e2ecf7 100%) !important;
  border-color: #d2e1f2 !important;
  box-shadow: 0 2px 8px rgba(59, 91, 140, 0.06) !important;
}

.tier-hot,
.matrix-tier.hot {
  color: #c93b2b !important;
  background: linear-gradient(135deg, #fff0ed 0%, #ffe2db 100%) !important;
  border-color: #ffd0c4 !important;
  box-shadow: 0 2px 8px rgba(201, 59, 43, 0.06) !important;
}

.tier-new,
.matrix-tier.new {
  color: #0f7643 !important;
  background: linear-gradient(135deg, #e6f7ed 0%, #daf0e2 100%) !important;
  border-color: #c4ebd0 !important;
  box-shadow: 0 2px 8px rgba(15, 118, 67, 0.06) !important;
}

.tier-pro,
.matrix-tier.pro {
  color: #6929c4 !important;
  background: linear-gradient(135deg, #f4f0ff 0%, #e8daff 100%) !important;
  border-color: #d4bbff !important;
  box-shadow: 0 2px 8px rgba(105, 41, 196, 0.06) !important;
}

.tier-media,
.matrix-tier.media {
  color: #006f70 !important;
  background: linear-gradient(135deg, #e5f6f4 0%, #d1f0ec 100%) !important;
  border-color: #a7e0d9 !important;
  box-shadow: 0 2px 8px rgba(0, 111, 112, 0.06) !important;
}

.tier-custom,
.matrix-tier.custom {
  color: #b25e00 !important;
  background: linear-gradient(135deg, #fff7ed 0%, #ffeed6 100%) !important;
  border-color: #ffe0b3 !important;
  box-shadow: 0 2px 8px rgba(178, 94, 0, 0.06) !important;
}

/* 2. 产品卡片悬浮高光条与结构重置 */
.product-list-3 .product-card {
  position: relative;
  overflow: hidden; /* 裁剪顶部高光条 */
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.28s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.28s ease;
}

.product-list-3 .product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #0372fe, #539fff, #8a3ffc);
  transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1), left 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  z-index: 5;
}

.product-list-3 .product-card:hover::before {
  width: 100%;
  left: 0;
}

/* 3. AI 产品卡片高科技网格纹理 */
.ai-product-primary {
  position: relative;
}

#mcp-matrix-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.22;
}

.ai-product-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 14px 14px;
  background-position: center;
  mask-image: radial-gradient(ellipse at center, black 65%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 65%, transparent 100%);
  pointer-events: none;
  z-index: 2;
}

.ai-product-primary > *:not(#mcp-matrix-canvas) {
  position: relative;
  z-index: 3;
}

/* 4. 产品详情弹窗平滑弹入动效 (带有超调阻尼与毛玻璃淡入) */
.product-detail-overlay.is-open {
  animation: overlayBlurFadeIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes overlayBlurFadeIn {
  from {
    opacity: 0;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    background: rgba(17, 24, 39, 0);
  }
  to {
    opacity: 1;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    background: rgba(17, 24, 39, 0.56);
  }
}

.product-detail-overlay.is-open .product-detail-modal {
  animation: modalBouncePopIn 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes modalBouncePopIn {
  0% {
    opacity: 0;
    transform: scale(0.9) translateY(24px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* 5. “如何选型”卡片动态立体化 */
.choose-grid article {
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.28s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.28s ease;
}

.choose-grid article:hover {
  transform: translateY(-5px);
  border-color: #bfdcff !important;
  box-shadow: 0 20px 40px rgba(3, 114, 254, 0.08), inset 0 0 12px rgba(3, 114, 254, 0.02) !important;
}

/* ==========================================================================
   END: 产品介绍页面（products.html）视觉与交互微交互打磨样式
   ========================================================================== */

/* ==========================================================================
   START: 行业解决方案页面（solutions.html）细节视觉与动效升维打磨样式
   ========================================================================== */

/* 1. 指标看板科技渐变与点阵网格化 */
.metric-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #17233d 0%, #1f5fbf 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  box-shadow: 0 24px 60px rgba(23, 35, 61, 0.15) !important;
}

.metric-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 14px 14px;
  background-position: center;
  mask-image: radial-gradient(ellipse at center, black 70%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 70%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.metric-band > div {
  position: relative;
  z-index: 2;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.metric-band > div:hover {
  transform: translateY(-4px);
}

/* 2. 落地场景 Emoji 标签的“微光盘容器”包装 */
.panel-features li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 22px;
  list-style: none;
}

.feature-marker {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 36px !important;
  height: 36px !important;
  border-radius: 10px !important;
  background: rgba(3, 114, 254, 0.08) !important;
  border: 1px solid rgba(3, 114, 254, 0.14) !important;
  font-size: 16px !important;
  flex: 0 0 auto !important;
  margin-right: 14px !important;
  box-shadow: 0 4px 10px rgba(3, 114, 254, 0.04) !important;
  box-sizing: border-box !important;
  margin-top: 2px !important;
}

/* 3. 毛玻璃控制台看板的“滑入式视差入场”动效 */
.visual-glass-card {
  animation: none !important; /* 取消页面载入时的静态动画 */
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.showcase-panel.is-active .visual-glass-card {
  animation: floatGlassCardActive 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.12s both;
}

@keyframes floatGlassCardActive {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 4. 底部 CTA 板块极光发光氛围渲染 */
.page-cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #17233d 0%, #1f5fbf 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 24px 60px rgba(23, 35, 61, 0.18) !important;
}

.page-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -30%;
  width: 160%;
  height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(3, 114, 254, 0.22) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.page-cta > * {
  position: relative;
  z-index: 2;
}

/* ==========================================================================
   END: 行业解决方案页面（solutions.html）细节视觉与动效升维打磨样式
   ========================================================================== */

/* ==========================================================================
   START: Weather MCP Playground Styles
   ========================================================================== */
.mcp-playground-section {
  background: linear-gradient(180deg, #fff 0%, #f4f8fc 100%);
  padding: 100px 0;
  border-bottom: 1px solid #eef3fb;
}

.playground-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 70px;
  align-items: center;
}

.playground-info {
  display: flex;
  flex-direction: column;
}

.playground-kicker {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--page-primary);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.playground-info h2 {
  margin-bottom: 16px;
  color: var(--page-text);
  font-size: 38px;
  line-height: 52px;
  font-weight: 700;
  letter-spacing: -0.015em;
}

.playground-desc {
  color: var(--page-muted);
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 36px;
}

.playground-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
  list-style: none;
}

.playground-features li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.playground-features .feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(3, 114, 254, 0.08);
  border: 1px solid rgba(3, 114, 254, 0.15);
  color: var(--page-primary);
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(3, 114, 254, 0.04);
}

.playground-features .feature-icon svg {
  width: 20px;
  height: 20px;
}

.playground-features .feature-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.playground-features .feature-text strong {
  color: var(--page-text);
  font-size: 16px;
  font-weight: 700;
}

.playground-features .feature-text span {
  color: var(--page-muted);
  font-size: 14px;
  line-height: 22px;
}

.playground-actions {
  display: flex;
  gap: 16px;
}

/* Chat Card Widget */
.mcp-chat-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 580px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(3, 114, 254, 0.12);
  box-shadow: 0 24px 64px rgba(31, 49, 94, 0.06), 0 4px 16px rgba(3, 114, 254, 0.02);
  overflow: hidden;
}

.mcp-chat-header {
  display: flex;
  align-items: center;
  padding: 16px 24px;
  background: #fff;
  border-bottom: 1px solid #edf2f7;
  z-index: 10;
}

.mcp-chat-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #0372fe 0%, #4facfe 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(3, 114, 254, 0.2);
}

.mcp-chat-title-box {
  margin-left: 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.mcp-chat-title-box strong {
  font-size: 16px;
  color: #0f172a;
  font-weight: 700;
}

.mcp-chat-title-box span {
  font-size: 12px;
  color: #64748b;
  margin-top: 1px;
}

.mcp-chat-limit {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px 12px;
  border-radius: 999px;
  background: #eff6ff;
  border: 1px solid #dbeafe;
  color: #2563eb;
  font-size: 12px;
  font-weight: 600;
}

.mcp-chat-limit .limit-icon {
  font-size: 11px;
}

.mcp-chat-body {
  flex: 1;
  padding: 24px;
  background: #f8fafc;
  overflow-y: auto;
  scroll-behavior: smooth;
}

/* Welcome Center Screen */
.mcp-chat-welcome {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  text-align: center;
  animation: fadeIn 0.4s ease;
}

.welcome-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: linear-gradient(135deg, #0372fe 0%, #4facfe 100%);
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 16px;
  box-shadow: 0 8px 24px rgba(3, 114, 254, 0.15);
}

.mcp-chat-welcome h3 {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
}

.mcp-chat-welcome p {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 24px;
}

.mcp-suggestion-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  width: 100%;
  max-width: 440px;
}

.mcp-suggest-btn {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 13px;
  color: #334155;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
  line-height: 1.4;
}

.mcp-suggest-btn:hover {
  border-color: #93c5fd;
  background: #f0f7ff;
  color: var(--page-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(3, 114, 254, 0.08);
}

.mcp-suggest-chip {
  display: block;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 13px;
  color: #334155;
  font-weight: 500;
  text-align: left;
  line-height: 1.4;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
  transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
  user-select: none;
  pointer-events: none;
}

.mcp-suggest-chip.is-active {
  border-color: #60a5fa;
  background: #eff6ff;
  color: #0372fe;
  box-shadow: 0 4px 14px rgba(3, 114, 254, 0.12);
}

.mcp-demo-mode .mcp-chat-welcome {
  min-height: auto;
  padding-bottom: 4px;
}

.mcp-demo-mode .mcp-chat-messages {
  margin-top: 12px;
  padding-top: 16px;
  border-top: 1px solid #e2e8f0;
}

.mcp-demo-mode .mcp-chat-footer {
  pointer-events: none;
  user-select: none;
}

.mcp-demo-mode .mcp-input-container {
  background: #f1f5f9;
  border-color: #e2e8f0;
  box-shadow: none;
}

.mcp-demo-mode .mcp-textarea {
  color: #94a3b8;
  cursor: not-allowed;
}

/* Chat Messages */
.mcp-chat-messages {
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: fadeIn 0.3s ease;
}

.mcp-message {
  display: flex;
  gap: 12px;
}

.mcp-message.user {
  justify-content: flex-end;
}

.mcp-message.assistant {
  justify-content: flex-start;
}

.mcp-message .mcp-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
}

.mcp-message.assistant .mcp-avatar {
  background: linear-gradient(135deg, #0372fe 0%, #4facfe 100%);
  color: #fff;
  box-shadow: 0 2px 6px rgba(3, 114, 254, 0.15);
}

.mcp-msg-bubble {
  max-width: 80%;
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.5;
  word-wrap: break-word;
}

.mcp-message.user .mcp-msg-bubble {
  background: var(--page-primary);
  color: #fff;
  border-top-right-radius: 4px;
  box-shadow: 0 4px 12px rgba(3, 114, 254, 0.15);
}

.mcp-message.assistant .mcp-msg-bubble {
  background: #fff;
  color: #1e293b;
  border-top-left-radius: 4px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.mcp-msg-bubble strong {
  font-weight: 700;
  color: inherit;
}

.mcp-msg-bubble p {
  margin-bottom: 8px;
}
.mcp-msg-bubble p:last-child {
  margin-bottom: 0;
}

/* Typing loading dots */
.typing-dots {
  display: flex;
  gap: 4px;
  align-items: center;
  height: 18px;
  padding: 0 4px;
}

.typing-dots span {
  width: 7px;
  height: 7px;
  background: #94a3b8;
  border-radius: 50%;
  animation: bounce 1.4s infinite both;
}

.typing-dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes bounce {
  0%, 80%, 100% {
    transform: scale(0.6);
    opacity: 0.4;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Chat Footer & Input */
.mcp-chat-footer {
  padding: 16px 20px;
  background: #fff;
  border-top: 1px solid #edf2f7;
}

.mcp-input-container {
  position: relative;
  display: flex;
  align-items: center;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 5px 12px 5px 16px;
  transition: all 0.2s ease;
}

.mcp-input-container:focus-within {
  border-color: #3b82f6;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12);
}

.mcp-textarea {
  flex: 1;
  height: 24px;
  max-height: 80px;
  border: 0;
  outline: none;
  background: transparent;
  resize: none;
  font-family: inherit;
  font-size: 14px;
  color: #0f172a;
  line-height: 24px;
  padding: 0;
}

.mcp-textarea::placeholder {
  color: #94a3b8;
}

.mcp-char-count {
  font-size: 11px;
  color: #94a3b8;
  margin: 0 10px;
  user-select: none;
}

.mcp-send-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e2e8f0;
  color: #94a3b8;
  border: 0;
  cursor: default;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0;
  flex-shrink: 0;
}

.mcp-send-btn.active {
  background: var(--page-primary);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(3, 114, 254, 0.2);
}

.mcp-send-btn.active:hover {
  transform: scale(1.05);
}

.mcp-send-btn svg {
  width: 14px;
  height: 14px;
}

.mcp-disclaimer {
  font-size: 11px;
  color: #94a3b8;
  text-align: center;
  margin-top: 10px;
}

/* ==========================================
   Weather Cards (MCP Widgets in Chat)
   ========================================== */
.mcp-weather-card {
  margin-top: 12px;
  padding: 16px;
  border-radius: 14px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.01);
  animation: slideUpFade 0.3s ease both;
}

.mcp-weather-card .mcp-wc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #64748b;
  font-weight: 600;
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 8px;
  margin-bottom: 12px;
}

.mcp-weather-card .mcp-wc-header .mcp-wc-city {
  color: #0f172a;
  font-weight: 700;
}

.mcp-weather-card .mcp-wc-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.mcp-weather-card .mcp-wc-temp-box {
  display: flex;
  flex-direction: column;
}

.mcp-weather-card .mcp-wc-temp {
  font-size: 32px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1;
}

.mcp-weather-card .mcp-wc-temp .unit {
  font-size: 18px;
  font-weight: 600;
}

.mcp-weather-card .mcp-wc-temp-range {
  font-size: 12px;
  color: #64748b;
  margin-top: 4px;
}

.mcp-weather-card .mcp-wc-condition {
  display: flex;
  align-items: center;
  gap: 6px;
}

.mcp-weather-card .mcp-wc-icon {
  font-size: 28px;
  line-height: 1;
}

.mcp-weather-card .mcp-wc-status {
  font-size: 14px;
  font-weight: 700;
  color: #334155;
}

.mcp-weather-card .mcp-wc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 16px;
}

.mcp-weather-card .mcp-wc-item {
  display: flex;
  flex-direction: column;
}

.mcp-weather-card .mcp-wc-item .label {
  font-size: 11px;
  color: #94a3b8;
  margin-bottom: 2px;
}

.mcp-weather-card .mcp-wc-item .val {
  font-size: 13px;
  font-weight: 600;
  color: #334155;
}

.mcp-weather-card .val.qaqi-excellent {
  color: #10b981;
}

.mcp-weather-card .val.text-danger {
  color: #ef4444;
}

/* Weekend Forecast Layout */
.mcp-weather-card .mcp-wc-days-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.mcp-weather-card .mcp-wc-day-item {
  padding: 12px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.2s ease;
}

.mcp-weather-card .mcp-wc-day-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.mcp-weather-card .day-title {
  font-size: 11px;
  color: #64748b;
  font-weight: 700;
}

.mcp-weather-card .day-icon {
  font-size: 22px;
  margin: 6px 0;
}

.mcp-weather-card .day-status {
  font-size: 12px;
  font-weight: 700;
  color: #334155;
}

.mcp-weather-card .day-temp {
  font-size: 12px;
  color: #64748b;
  margin: 2px 0 8px 0;
}

.mcp-weather-card .day-tips {
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 20px;
  font-weight: 600;
  white-space: nowrap;
}

.mcp-weather-card .day-tips.travel-good {
  background: #ecfdf5;
  color: #065f46;
}

.mcp-weather-card .day-tips.travel-indoor {
  background: #fef2f2;
  color: #991b1b;
}

/* Marine / Surf Layout */
.mcp-weather-card .mcp-wc-surf-main {
  display: flex;
  gap: 16px;
  align-items: center;
}

.mcp-weather-card .surf-score-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border-radius: 12px;
  padding: 12px;
  min-width: 90px;
  border: 1px solid #bfdbfe;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.05);
}

.mcp-weather-card .surf-score {
  font-size: 32px;
  font-weight: 800;
  color: #1d4ed8;
  line-height: 1;
}

.mcp-weather-card .surf-grade {
  font-size: 11px;
  color: #1e40af;
  font-weight: 700;
  margin-top: 4px;
  white-space: nowrap;
}

.mcp-weather-card .surf-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 12px;
  flex: 1;
}

.mcp-weather-card .surf-specs div {
  font-size: 12px;
  color: #64748b;
}

.mcp-weather-card .surf-specs strong {
  display: block;
  color: #1e293b;
  font-size: 13px;
  margin-top: 1px;
}

/* Pet Output Safety Timeline */
.mcp-weather-card .mcp-wc-timeline {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mcp-weather-card .timeline-item {
  display: flex;
  flex-direction: column;
  padding: 10px 12px;
  border-radius: 8px;
  border-left: 4px solid;
}

.mcp-weather-card .timeline-item .time {
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 2px;
}

.mcp-weather-card .timeline-item .badge {
  font-size: 10px;
  display: inline-block;
  align-self: flex-start;
  padding: 1px 6px;
  border-radius: 4px;
  font-weight: 700;
  margin: 2px 0;
}

.mcp-weather-card .timeline-item .desc {
  font-size: 11px;
  color: #64748b;
  margin-top: 2px;
  line-height: 1.4;
}

.mcp-weather-card .timeline-item.unsafe {
  border-left-color: #ef4444;
  background: #fef2f2;
}

.mcp-weather-card .timeline-item.unsafe .time {
  color: #991b1b;
}

.mcp-weather-card .timeline-item.unsafe .badge {
  background: #fecaca;
  color: #991b1b;
}

.mcp-weather-card .timeline-item.caution {
  border-left-color: #f59e0b;
  background: #fffbeb;
}

.mcp-weather-card .timeline-item.caution .time {
  color: #92400e;
}

.mcp-weather-card .timeline-item.caution .badge {
  background: #fef3c7;
  color: #92400e;
}

.mcp-weather-card .timeline-item.safe {
  border-left-color: #10b981;
  background: #ecfdf5;
}

.mcp-weather-card .timeline-item.safe .time {
  color: #065f46;
}

.mcp-weather-card .timeline-item.safe .badge {
  background: #d1fae5;
  color: #065f46;
}

/* Fallback CTA Card styling */
.mcp-weather-card.fallback-cta {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border-color: #334155;
  color: #fff;
}

.mcp-weather-card.fallback-cta .mcp-wc-header {
  border-bottom-color: #334155;
}

.mcp-weather-card.fallback-cta .mcp-wc-header span:first-child {
  color: #fff;
}

.fallback-cta-content p {
  font-size: 12px;
  color: #94a3b8;
  line-height: 1.5;
}

/* Keyframes */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive for Playground */
@media (max-width: 900px) {
  .mcp-playground-section {
    padding: 60px 0;
  }
  .playground-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .playground-info h2 {
    font-size: 30px;
    line-height: 40px;
  }
  .mcp-chat-card {
    height: 520px;
  }
  .mcp-suggestion-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
}

/* ==========================================================================
   END: Weather MCP Playground Styles
   ========================================================================== */

.news-loading,
.news-error,
.news-empty-tip {
  grid-column: 1 / -1;
  padding: 48px 16px;
  text-align: center;
  color: #667085;
  font-size: 15px;
}

.news-error {
  color: #d92d20;
}

/* Landing auth modal (static pages) */
.landing-auth-overlay {
  display: flex;
  position: fixed;
  inset: 0;
  z-index: 10000;
  align-items: center;
  justify-content: center;
  background: rgba(17, 24, 39, 0.48);
}

.landing-auth-overlay[hidden],
.landing-captcha-overlay[hidden] {
  display: none !important;
}

.landing-auth-modal {
  position: relative;
  width: 420px;
  max-width: calc(100vw - 32px);
  max-height: calc(100vh - 48px);
  padding: 32px 28px 28px;
  border-radius: 16px;
  overflow-y: auto;
  background: #fff;
  box-shadow: 0 24px 70px rgba(17, 24, 39, 0.22);
}

.landing-auth-close,
.landing-captcha-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 16px;
  height: 16px;
  padding: 0;
  border: none;
  background: url(/landing/images/close.png) no-repeat center;
  background-size: cover;
  cursor: pointer;
}

.landing-auth-header {
  margin-bottom: 20px;
  text-align: center;
}

.landing-auth-logo {
  display: block;
  width: 120px;
  height: auto;
  margin: 0 auto 12px;
}

.landing-auth-header h2 {
  font-size: 20px;
  font-weight: 600;
  color: #1f315e;
}

.landing-auth-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.landing-auth-form[hidden] {
  display: none !important;
}

.landing-auth-field {
  display: block;
}

.landing-auth-field input {
  width: 100%;
  height: 40px;
  padding: 0 15px;
  border: none;
  border-radius: 8px;
  box-shadow: 0 0 0 1px #d9e4f5 inset;
  font-size: 14px;
  color: #1f315e;
  outline: none;
  box-sizing: border-box;
}

.landing-auth-field input:focus {
  box-shadow: 0 0 0 1px #0372fe inset, 0 0 0 4px rgba(3, 114, 254, 0.1);
}

.landing-auth-field input.is-error {
  box-shadow: 0 0 0 1px var(--el-color-danger, #f5222d) inset;
}

.landing-auth-field input.is-error:focus {
  box-shadow: 0 0 0 1px var(--el-color-danger, #f5222d) inset, 0 0 0 4px var(--el-color-danger-light-9, rgba(245, 34, 45, 0.1));
}

.landing-auth-field-error {
  margin: 4px 0 0;
  padding: 0;
  color: var(--el-color-danger, #f5222d);
  font-size: 12px;
  line-height: 1.4;
  min-height: 0;
}

.landing-auth-field--password {
  position: relative;
}

.landing-auth-field--password input {
  padding-right: 34px;
}

.landing-auth-pwd-toggle {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 40px;
  padding: 0;
  border: none;
  background: transparent;
  color: #a8abb2;
  cursor: pointer;
  transition: color 0.2s ease;
}

.landing-auth-pwd-toggle:hover {
  color: #909399;
}

.landing-auth-field-row {
  display: flex;
  gap: 16px;
  align-items: center;
}

.landing-auth-field--grow {
  flex: 1;
  min-width: 0;
}

.landing-auth-row {
  display: flex;
  gap: 12px;
}

.landing-auth-row--between {
  justify-content: space-between;
  align-items: center;
}

.landing-auth-row--center {
  justify-content: center;
}

.landing-auth-btn {
  height: 48px;
  border-radius: 8px;
  border: none;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
}

.landing-auth-btn--primary {
  width: 100%;
  color: #fff;
  background: linear-gradient(90deg, #0372fe 0%, #539fff 100%);
}

.landing-auth-btn--primary:hover:not(:disabled) {
  background: radial-gradient(100% 130% at 100% 0%, #32dfff 0%, #0372fe 100%);
  box-shadow: 0 6px 16px rgba(3, 114, 254, 0.25);
}

.landing-auth-btn--secondary {
  flex: 1;
  color: #0372fe;
  background: #fff;
  border: 1px solid #cfe2ff;
}

.landing-auth-btn--secondary:hover:not(:disabled) {
  border-color: #0372fe;
  background: #f0f7ff;
}

.landing-auth-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.landing-auth-code-btn {
  flex-shrink: 0;
  min-width: 112px;
  padding: 0 12px;
  font-size: 14px;
}

.landing-auth-text-btn {
  padding: 0;
  border: none;
  background: none;
  color: #0372fe;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

.landing-auth-toast {
  display: flex;
  align-items: center;
  gap: 10px;
  position: fixed;
  top: 20px;
  left: 50%;
  z-index: 12000;
  transform: translateX(-50%);
  min-width: 320px;
  max-width: calc(100vw - 32px);
  padding: 12px 20px;
  border-width: 1px;
  border-style: solid;
  border-radius: 8px;
  background: #fff;
  color: #606266;
  font-size: 14px;
  line-height: 1.4;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  pointer-events: none;
  white-space: nowrap;
  border-color: #e9e9eb;
}

.landing-auth-toast[hidden] {
  display: none !important;
}

.landing-auth-toast__icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.landing-auth-toast--error {
  background: #fef0f0;
  border-color: #fde2e2;
}

.landing-auth-toast--error .landing-auth-toast__icon {
  color: #f56c6c;
}

.landing-auth-toast--success {
  background: #f0f9eb;
  border-color: #e1f3d8;
}

.landing-auth-toast--success .landing-auth-toast__icon {
  color: #67c23a;
}

.landing-auth-toast--info {
  background: #f4f4f5;
  border-color: #e9e9eb;
}

.landing-auth-toast--info .landing-auth-toast__icon {
  color: #909399;
}

.landing-captcha-overlay {
  display: flex;
  position: fixed;
  inset: 0;
  z-index: 10002;
  align-items: center;
  justify-content: center;
  background: rgba(17, 24, 39, 0.55);
}

.landing-captcha-modal {
  position: relative;
  width: 360px;
  max-width: calc(100vw - 32px);
  padding: 24px 20px 20px;
  border-radius: 12px;
  background: #fff;
}

.landing-captcha-modal h3 {
  margin: 0 0 8px;
  font-size: 18px;
  color: #1f315e;
  text-align: center;
}

.landing-captcha-status {
  margin: 0 0 12px;
  font-size: 13px;
  color: #667085;
  text-align: center;
}

.landing-captcha-image-wrap {
  position: relative;
  margin-bottom: 16px;
  border-radius: 8px;
  overflow: hidden;
  background: #f6f9ff;
}

.landing-captcha-image-wrap img {
  display: block;
  width: 100%;
  height: auto;
  cursor: crosshair;
}

.landing-captcha-click-dot {
  position: absolute;
  z-index: 1;
  width: 22px;
  height: 22px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: rgba(3, 114, 254, 0.92);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
  transform: translate(-50%, -50%);
  pointer-events: none;
  box-shadow: 0 2px 8px rgba(3, 114, 254, 0.35);
}

.landing-captcha-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.landing-captcha-toolbar {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.landing-captcha-link-btn {
  border: none;
  background: none;
  padding: 0;
  font-size: 14px;
  color: #0372fe;
  cursor: pointer;
}

.landing-captcha-link-btn:hover {
  opacity: 0.85;
}

