* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  color: #333;
  background-color: #fff;
  -webkit-tap-highlight-color: transparent;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 60px;
  background-color: #fff;
  border-bottom: 1px solid #eee;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.navbar-brand-logo {
  display: block;
  width: auto;
  height: 28px;
  flex-shrink: 0;
}

.navbar-brand-name {
  font-size: 18px;
  font-weight: 600;
  font-style: italic;
  color: #333;
  white-space: nowrap;
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.navbar-hotline {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.25s ease;
}

.navbar-hotline-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: #1677ff;
  background: rgba(22, 119, 255, 0.08);
  border-radius: 50%;
  flex-shrink: 0;
}

.navbar-hotline-icon svg {
  width: 18px;
  height: 18px;
}

.navbar-hotline-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.navbar-hotline-label {
  font-size: 12px;
  color: #888;
  line-height: 1.2;
}

.navbar-hotline-num {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  line-height: 1.2;
  white-space: nowrap;
}

@media (hover: hover) {
  .navbar-hotline:hover {
    opacity: 0.85;
  }

  .navbar-hotline:hover .navbar-hotline-num {
    color: #1677ff;
  }
}

.navbar-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 20px;
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  background-color: #1677ff;
  border-radius: 4px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

@media (hover: hover) {
  .navbar-btn:hover {
    transform: translateY(-2px);
    background-color: #4096ff;
    box-shadow: 0 6px 16px rgba(22, 119, 255, 0.35);
  }
}

.navbar-btn:active {
  transform: translateY(0);
  opacity: 0.9;
  box-shadow: none;
}

@media (max-width: 768px) {
  .navbar-inner {
    padding: 0 16px;
  }

  .navbar-brand-name {
    font-size: 15px;
  }

  .navbar-brand-logo {
    height: 24px;
  }

  .navbar-actions {
    gap: 12px;
  }

  .navbar-hotline {
    display: none;
  }

  .navbar-hotline-icon {
    width: 32px;
    height: 32px;
  }

  .navbar-hotline-icon svg {
    width: 16px;
    height: 16px;
  }

  .navbar-hotline-label {
    display: none;
  }

  .navbar-hotline-num {
    font-size: 14px;
  }

  .navbar-btn {
    height: 32px;
    padding: 0 14px;
    font-size: 13px;
  }
}

.container {
  width: 100%;
  max-width: 1200px;
  min-height: 100%;
  margin: 0 auto;
  padding: 0 24px;
}

/* Banner */
.banner {
  position: relative;
  width: 100%;
  margin-top: 60px;
  overflow: hidden;
  touch-action: pan-y;
}

.banner-slider {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}

.banner-slider.is-dragging {
  cursor: grabbing;
}

.banner-track {
  display: flex;
  height: 100%;
  transition: transform 0.45s ease;
  will-change: transform;
}

.banner-track.no-transition {
  transition: none;
}

.banner-slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
}

.banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.banner-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
}

.banner-content {
  max-width: 640px;
}

.banner-title,
.banner-desc,
.banner-btns .banner-btn {
  opacity: 0;
  transform: translateY(30px);
}

.banner-slide.is-active .banner-title {
  animation: bannerTextIn 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.banner-slide.is-active .banner-desc {
  animation: bannerTextIn 1s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
}

.banner-slide.is-active .banner-btns .banner-btn:nth-child(1) {
  animation: bannerTextIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.38s forwards;
}

.banner-slide.is-active .banner-btns .banner-btn:nth-child(2) {
  animation: bannerTextIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.52s forwards;
}

@keyframes bannerTextIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.banner-title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.35;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.banner-desc {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 32px;
}

.banner-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.banner-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 32px;
  font-size: 16px;
  text-decoration: none;
  border-radius: 6px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, background-position 0.45s ease, color 0.3s ease, border-color 0.3s ease;
}

@media (hover: hover) {
  .banner-btn-primary:hover {
    transform: scale(1.05);
    background-position: 100% 50%;
    box-shadow: 0 10px 28px rgba(22, 119, 255, 0.45);
  }

  .banner-btn-outline:hover {
    transform: translateY(-3px);
    color: #fff;
    background-color: #1677ff;
    border-color: #1677ff;
    box-shadow: 0 8px 20px rgba(22, 119, 255, 0.25);
  }
}

.banner-btn:active {
  transform: scale(0.98);
  box-shadow: none;
  opacity: 0.9;
}

.banner-btn-outline:active {
  transform: translateY(0) scale(0.98);
}

.banner-btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #1677ff 0%, #4096ff 50%, #1677ff 100%);
  background-size: 200% 200%;
  background-position: 0% 50%;
}

.banner-btn-outline {
  color: #1677ff;
  background-color: #fff;
  border: 1px solid #1677ff;
}

.banner-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  z-index: 3;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.banner-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: background-color 0.3s, width 0.3s;
}

.banner-dot.active {
  width: 24px;
  border-radius: 4px;
  background-color: #1677ff;
}

@media (max-width: 768px) {
  .banner-slider {
    height: 440px;
  }

  .banner-title {
    font-size: 28px;
  }

  .banner-desc {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .banner-btn {
    height: 44px;
    padding: 0 24px;
    font-size: 15px;
  }
}

/* GEO Section */
.geo-section {
  padding: 100px 0 96px;
  background: #f4f8fd;
}

.geo-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.geo-header {
  text-align: center;
  margin-bottom: 48px;
}

.geo-title {
  font-size: clamp(17px, 3.5vw, 40px);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.02em;
  color: #111;
  margin-bottom: 8px;
  white-space: nowrap;
}

.geo-subtitle {
  font-size: 17px;
  font-weight: 400;
  color: #888;
  line-height: 1.8;
}

.geo-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.geo-card {
  background: #fafbfc;
  border-radius: 20px;
  padding: 36px;
  transition: box-shadow 0.35s ease;
}

@media (hover: hover) {
  .geo-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
  }
}

.geo-card-consult {
  position: relative;
  overflow: hidden;
  min-height: 400px;
  background: #eef6ff url("../images/radar-chart.png") center bottom / cover no-repeat;
}

.geo-card-consult::before,
.geo-card-report::before {
  content: "";
  position: absolute;
  bottom: 30px;
  left: 50%;
  width: 200px;
  height: 200px;
  transform: translateX(-50%);
  border: 2px solid rgba(22, 119, 255, 0.2);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.geo-card-consult::after,
.geo-card-report::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 280px;
  height: 280px;
  transform: translateX(-50%);
  border: 1px solid rgba(22, 119, 255, 0.12);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.geo-card-consult .geo-card-head {
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

.geo-card-report {
  position: relative;
  overflow: hidden;
  min-height: 400px;
  background: #eef6ff url("../images/sec2-pic-2@2x.d3a672c5.png") center bottom / cover no-repeat;
}

.geo-card-report .geo-card-head {
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

.geo-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
}

.consult-profile {
  display: flex;
  align-items: center;
  gap: 16px;
}

.consult-avatar {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1677ff;
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.95), 0 0 0 5px rgba(22, 119, 255, 0.3);
}

.consult-avatar svg {
  width: 24px;
  height: 24px;
}

.consult-text h3 {
  font-size: 17px;
  font-weight: 600;
  color: #111;
  margin-bottom: 6px;
}

.consult-text p {
  font-size: 14px;
  color: #5a8ab8;
}

.report-desc {
  flex: 1;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.8;
  color: #333;
}

.report-desc span {
  color: #1677ff;
  font-weight: 500;
}

.geo-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 24px;
  font-size: 14px;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.geo-btn-accent {
  color: #fff;
  background: #1677ff;
}

.geo-btn-outline {
  color: #1677ff;
  background: transparent;
  border: 1px solid #1677ff;
}

@media (hover: hover) {
  .geo-btn-accent:hover {
    background: #4096ff;
    box-shadow: 0 8px 24px rgba(22, 119, 255, 0.25);
  }

  .geo-btn-outline:hover {
    color: #fff;
    background: #1677ff;
  }
}

.geo-btn:active {
  opacity: 0.88;
}

/* Features */
.geo-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 48px 0;
  background: rgba(255, 255, 255, 0.50);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(22, 119, 255, 0.12);
}

.geo-feature {
  position: relative;
  padding: 0 36px;
  text-align: center;
}

.geo-feature:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 48px;
  background: rgba(200, 220, 240, 0.40);
  transform: translateY(-50%);
}

.feature-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 20px;
  flex-shrink: 0;
}

.feature-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.geo-feature h4 {
  font-size: 18px;
  font-weight: 400;
  color: #111;
  margin-bottom: 10px;
}

.geo-feature p {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.8;
  color: #888;
}

@media (max-width: 992px) {
  .geo-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .geo-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 20px 16px;
    border-radius: 16px;
  }

  .geo-feature {
    display: grid;
    grid-template-columns: 40px 1fr;
    grid-template-rows: auto auto;
    column-gap: 12px;
    row-gap: 4px;
    align-items: center;
    padding: 14px 12px;
    text-align: left;
    background: rgba(255, 255, 255, 0.45);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.65);
  }

  .geo-feature:nth-child(2)::after {
    display: none;
  }

  .geo-feature:not(:last-child)::after {
    display: none;
  }

  .feature-icon {
    grid-row: 1 / 3;
    grid-column: 1;
    width: 40px;
    height: 40px;
    margin: 0;
    align-self: center;
  }

  .geo-feature h4 {
    grid-column: 2;
    grid-row: 1;
    font-size: 14px;
    margin-bottom: 0;
    line-height: 1.4;
  }

  .geo-feature p {
    grid-column: 2;
    grid-row: 2;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.55;
    color: #666;
  }
}

@media (max-width: 768px) {
  .geo-section {
    padding: 48px 0 56px;
  }

  .geo-inner {
    padding: 0 16px;
  }

  .geo-header {
    margin-bottom: 28px;
  }

  .geo-subtitle {
    font-size: 14px;
    line-height: 1.7;
  }

  .geo-cards {
    gap: 16px;
    margin-bottom: 16px;
  }

  .geo-card {
    padding: 0;
    border-radius: 16px;
    overflow: hidden;
  }

  .geo-card-head {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    margin-bottom: 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .geo-card-consult,
  .geo-card-report {
    min-height: 0;
    padding-bottom: 0;
    background-size: 100% auto;
    background-position: center bottom;
  }

  .geo-card-consult::before,
  .geo-card-report::before {
    display: none;
  }

  .geo-card-consult::after,
  .geo-card-report::after {
    content: "";
    display: block;
    position: static;
    width: auto;
    height: 200px;
    margin: 0;
    transform: none;
    border: none;
    border-radius: 0;
    pointer-events: none;
  }

  .consult-profile {
    gap: 12px;
  }

  .consult-avatar {
    width: 42px;
    height: 42px;
  }

  .consult-avatar svg {
    width: 22px;
    height: 22px;
  }

  .consult-text h3 {
    font-size: 16px;
  }

  .consult-text p {
    font-size: 13px;
    line-height: 1.5;
  }

  .report-desc {
    font-size: 15px;
    line-height: 1.65;
  }

  .geo-btn {
    width: 100%;
    height: 44px;
    font-size: 15px;
  }

  .geo-features {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 14px;
    border-radius: 14px;
  }

  .geo-feature {
    grid-template-columns: 44px 1fr;
    column-gap: 14px;
    padding: 16px;
    border-radius: 12px;
  }

  .feature-icon {
    width: 44px;
    height: 44px;
  }

  .geo-feature h4 {
    font-size: 15px;
  }

  .geo-feature p {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.6;
  }
}

@media (max-width: 480px) {
  .geo-card-consult::after,
  .geo-card-report::after {
    height: 170px;
  }
}

/* Monitor Section */
.monitor-section {
  padding: 80px 0 88px;
  background: linear-gradient(180deg, #ffffff 0%, #eef5ff 50%, #e3edfc 100%);
}

.monitor-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.monitor-header {
  text-align: center;
  margin-bottom: 48px;
}

.monitor-title {
  font-size: clamp(22px, 3.2vw, 36px);
  font-weight: 600;
  line-height: 1.4;
  color: #111;
  margin-bottom: 8px;
}

.monitor-subtitle {
  font-size: 16px;
  color: #888;
  line-height: 1.7;
}

.monitor-card {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 40px 44px;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(22, 119, 255, 0.07);
  margin-bottom: 24px;
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.monitor-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: stretch;
}

.monitor-card-sm {
  margin-bottom: 0;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding: 28px 28px 0;
  min-height: 280px;
  overflow: hidden;
}

.monitor-card-sm .monitor-content {
  flex: none;
  width: 100%;
  padding: 0;
  margin-bottom: 12px;
}

.monitor-card-sm .monitor-card-title {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 14px;
  line-height: 1.4;
  color: #111;
}

.monitor-card-sm .monitor-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  margin-bottom: 0;
}

.monitor-card-sm .monitor-list li {
  flex: 0 0 auto;
  margin-bottom: 0;
  padding-left: 22px;
  font-size: 14px;
  color: #666;
  white-space: nowrap;
}

.monitor-card-sm .monitor-list li::before {
  width: 14px;
  height: 14px;
  top: 3px;
}

.monitor-card-sm .monitor-desc {
  font-size: 14px;
  line-height: 1.75;
  color: #666;
  margin-bottom: 0;
}

.monitor-card-sm .monitor-visual {
  flex: 1;
  width: calc(100% + 56px);
  margin: 0 -28px 0;
  padding: 0;
  background: none;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.monitor-card-sm .monitor-visual img {
  display: block;
  width: auto;
  max-width: 92%;
  max-height: 190px;
  object-fit: contain;
  border-radius: 0;
}

.monitor-content {
  flex: 0 0 300px;
}

.monitor-card:not(.monitor-card-sm) .monitor-card-title {
  font-size: 26px;
  font-weight: 400;
  color: #111;
  margin-bottom: 18px;
}

.monitor-list {
  list-style: none;
  margin-bottom: 28px;
}

.monitor-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

.monitor-list li:last-child {
  margin-bottom: 0;
}

.monitor-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14' fill='none'%3E%3Ccircle cx='7' cy='7' r='7' fill='%231677ff'/%3E%3Cpath d='M4 7l2 2 4-4' stroke='%23fff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.monitor-desc {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.75;
  color: #666;
}

.monitor-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 28px;
  font-size: 15px;
  color: #fff;
  text-decoration: none;
  background: #1677ff;
  border-radius: 8px;
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

@media (hover: hover) {
  .monitor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 40px rgba(22, 119, 255, 0.12);
  }

  .monitor-btn:hover {
    background: #4096ff;
    box-shadow: 0 8px 24px rgba(22, 119, 255, 0.25);
    transform: translateY(-1px);
  }
}

.monitor-btn:active {
  opacity: 0.88;
  transform: translateY(0);
}

.monitor-visual {
  flex: 1;
  min-width: 0;
  padding: 0;
  background: none;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.monitor-card:not(.monitor-card-sm) .monitor-visual img {
  max-width: 100%;
  border-radius: 8px;
}

.monitor-visual img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  border-radius: 0;
}

@media (max-width: 992px) {
  .monitor-card {
    flex-direction: column;
    gap: 24px;
    padding: 28px 24px;
  }

  .monitor-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .monitor-card-sm {
    padding: 24px 24px 0;
    min-height: auto;
  }

  .monitor-card-sm .monitor-visual {
    width: calc(100% + 48px);
    margin: 0 -24px 0;
  }

  .monitor-card-sm .monitor-list li {
    white-space: normal;
  }

  .monitor-content {
    flex: none;
    width: 100%;
  }

  .monitor-card:not(.monitor-card-sm) .monitor-visual {
    width: 100%;
    justify-content: center;
  }

  .monitor-card:not(.monitor-card-sm) .monitor-visual img {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .monitor-section {
    padding: 48px 0 56px;
  }

  .monitor-inner {
    padding: 0 16px;
  }

  .monitor-header {
    margin-bottom: 28px;
  }

  .monitor-title {
    font-size: 20px;
  }

  .monitor-subtitle {
    font-size: 13px;
  }

  .monitor-card {
    padding: 22px 18px;
    border-radius: 16px;
    gap: 20px;
  }

  .monitor-card:not(.monitor-card-sm) .monitor-card-title {
    font-size: 20px;
    margin-bottom: 14px;
  }

  .monitor-card:not(.monitor-card-sm) .monitor-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 14px;
    margin-bottom: 20px;
  }

  .monitor-card:not(.monitor-card-sm) .monitor-list li {
    flex: 0 0 auto;
    margin-bottom: 0;
    font-size: 13px;
    white-space: normal;
  }

  .monitor-list {
    margin-bottom: 20px;
  }

  .monitor-list li {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .monitor-btn {
    width: 100%;
    height: 42px;
    font-size: 14px;
  }

  .monitor-card-sm {
    padding: 20px 20px 0;
  }

  .monitor-card-sm .monitor-visual {
    width: calc(100% + 40px);
    margin: 0 -20px 0;
  }

  .monitor-card-sm .monitor-card-title {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .monitor-card-sm .monitor-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px 12px;
  }

  .monitor-card-sm .monitor-list li {
    font-size: 13px;
    white-space: normal;
  }

  .monitor-card-sm .monitor-desc {
    font-size: 13px;
  }

  .monitor-card-sm .monitor-visual img {
    max-height: 150px;
    max-width: 100%;
  }
}

/* Growth Section */
.growth-section {
  padding: 80px 0 88px;
  background: #fff;
}

.growth-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.growth-header {
  text-align: center;
  margin-bottom: 48px;
}

.growth-title {
  font-size: clamp(22px, 3.2vw, 36px);
  font-weight: 600;
  line-height: 1.4;
  color: #111;
  margin-bottom: 8px;
}

.growth-subtitle {
  font-size: 16px;
  color: #888;
  line-height: 1.7;
}

.growth-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.growth-card {
  grid-column: span 2;
  position: relative;
  padding: 18px 20px;
  border-radius: 16px;
  overflow: hidden;
  background-color: #f4f7fd;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  min-height: 148px;
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.growth-card-wide {
  grid-column: span 3;
  min-height: 156px;
}

.growth-card-1 {
  background-image: url("../images/sec4-pic-1@2x.6757f2f6.png");
}

.growth-card-2 {
  background-image: url("../images/sec4-pic-2@2x.926b45ca.png");
}

.growth-card-3 {
  background-image: url("../images/sec4-pic-3@2x.0361df9a.png");
}

.growth-card-4 {
  background-image: url("../images/sec4-pic-4@2x.85bdc298.png");
}

.growth-card-5 {
  background-image: url("../images/sec4-pic-5@2x.cda4ae61.png");
}

.growth-card-body {
  position: relative;
  z-index: 1;
  max-width: 58%;
}

.growth-card-wide .growth-card-body {
  max-width: 50%;
}

.growth-card-title {
  font-size: 18px;
  font-weight: 500;
  color: #111;
  line-height: 1.45;
  margin-bottom: 10px;
}

.growth-card-desc {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.65;
  color: #888;
  margin-bottom: 10px;
}

.growth-card-link {
  display: inline-block;
  font-size: 13px;
  color: #aaa;
  text-decoration: none;
  transition: color 0.25s ease;
}

@media (hover: hover) {
  .growth-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(22, 119, 255, 0.1);
  }

  .growth-card-link:hover {
    color: #1677ff;
  }
}

@media (max-width: 992px) {
  .growth-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .growth-card,
  .growth-card-wide {
    grid-column: span 1;
    min-height: 140px;
  }

  .growth-card-body,
  .growth-card-wide .growth-card-body {
    max-width: 50%;
    padding: 0;
  }
}

@media (max-width: 768px) {
  .growth-section {
    padding: 48px 0 56px;
  }

  .growth-inner {
    padding: 0 16px;
  }

  .growth-header {
    margin-bottom: 28px;
  }

  .growth-title {
    font-size: 20px;
  }

  .growth-subtitle {
    font-size: 13px;
  }

  .growth-card {
    padding: 16px 18px;
    min-height: 132px;
  }

  .growth-card-wide {
    min-height: 136px;
  }

  .growth-card-body,
  .growth-card-wide .growth-card-body {
    max-width: 50%;
  }

  .growth-card-title {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .growth-card-desc {
    font-size: 12px;
    margin-bottom: 12px;
  }
}

/* Case Section */
.case-section {
  padding: 80px 0 88px;
  background: linear-gradient(180deg, #f8fbff 0%, #eef4fc 100%);
}

.case-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.case-header {
  text-align: center;
  margin-bottom: 36px;
}

.case-title {
  font-size: clamp(22px, 3.2vw, 36px);
  font-weight: 600;
  line-height: 1.4;
  color: #111;
  margin-bottom: 8px;
}

.case-subtitle {
  font-size: 16px;
  color: #888;
  line-height: 1.7;
}

.case-tabs-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.case-tabs-wrap::-webkit-scrollbar {
  display: none;
}

.case-tabs {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 999px;
  box-shadow: 0 2px 16px rgba(22, 119, 255, 0.06);
  white-space: nowrap;
}

.case-tab-indicator {
  position: absolute;
  top: 5px;
  left: 5px;
  height: 44px;
  width: 0;
  background: #1677ff;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(22, 119, 255, 0.25);
  pointer-events: none;
  z-index: 0;
  transition: transform 0.35s cubic-bezier(0.34, 1.2, 0.64, 1), width 0.35s cubic-bezier(0.34, 1.2, 0.64, 1);
  will-change: transform, width;
}

.case-tab {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  height: 44px;
  padding: 0 24px;
  font-size: 16px;
  font-family: inherit;
  color: #555;
  background: transparent;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.25s ease;
}

.case-tab.active {
  color: #fff;
}

.case-card {
  display: flex;
  align-items: stretch;
  gap: 32px;
  padding: 36px 40px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(22, 119, 255, 0.08);
  transition: opacity 0.3s ease;
}

.case-card.is-switching {
  opacity: 0.6;
}

.case-card-left {
  flex: 0 0 42%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.case-badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 6px 14px;
  margin-bottom: 18px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  color: #1677ff;
  background: rgba(22, 119, 255, 0.08);
  border-radius: 999px;
}

.case-badge-num {
  font-weight: 600;
  margin-right: 8px;
  font-size: 16px;
}

.case-badge-top {
  font-style: italic;
  font-weight: 700;
}

.case-card.is-first-tab .case-badge {
  font-size: 16px;
  padding: 8px 16px;
}

.case-card.is-first-tab .case-badge-num {
  font-size: 22px;
  line-height: 1;
}

.case-card.is-first-tab .case-desc {
  font-size: 19px;
}

.case-card.is-first-tab .case-list li {
  font-size: 17px;
}

.case-desc {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.75;
  color: #222;
  margin-bottom: 22px;
}

.case-list {
  list-style: none;
  margin-bottom: 0;
}

.case-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  font-size: 16px;
  color: #666;
  line-height: 1.7;
}

.case-list li:last-child {
  margin-bottom: 0;
}

.case-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14' fill='none'%3E%3Ccircle cx='7' cy='7' r='7' fill='%231677ff'/%3E%3Cpath d='M4 7l2 2 4-4' stroke='%23fff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.case-list-key,
.case-list-arrow {
  color: #1677ff;
}

.case-list-arrow {
  margin: 0 2px;
}

.case-list-val {
  color: #666;
}

.case-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  height: 48px;
  padding: 0 32px;
  margin-top: 24px;
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  background: #1677ff;
  border-radius: 8px;
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

@media (hover: hover) {
  .case-btn:hover {
    background: #4096ff;
    box-shadow: 0 8px 24px rgba(22, 119, 255, 0.25);
    transform: translateY(-1px);
  }
}

.case-card-right {
  flex: 1;
  min-width: 0;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.case-photo {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  border-radius: 16px;
}

.case-overlay {
  position: absolute;
  left: 20px;
  bottom: 24px;
  width: 148px;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
  z-index: 2;
  pointer-events: none;
}

.case-overlay[hidden] {
  display: none;
}

@media (max-width: 992px) {
  .case-card {
    flex-direction: column;
    gap: 24px;
    padding: 28px 24px;
  }

  .case-card-left {
    flex: none;
    width: 100%;
    justify-content: flex-start;
  }

  .case-photo {
    min-height: 220px;
  }
}

@media (max-width: 768px) {
  .case-section {
    padding: 48px 0 56px;
  }

  .case-inner {
    padding: 0 16px;
  }

  .case-header {
    margin-bottom: 24px;
  }

  .case-title {
    font-size: 20px;
  }

  .case-subtitle {
    font-size: 13px;
  }

  .case-tabs-wrap {
    justify-content: flex-start;
    margin-bottom: 20px;
    margin-left: -16px;
    margin-right: -16px;
    padding: 0 16px;
  }

  .case-tab {
    height: 38px;
    padding: 0 18px;
    font-size: 14px;
  }

  .case-tab-indicator {
    height: 38px;
  }

  .case-card {
    padding: 22px 18px;
    border-radius: 16px;
  }

  .case-badge {
    font-size: 14px;
    padding: 5px 12px;
    margin-bottom: 14px;
  }

  .case-badge-num {
    font-size: 15px;
  }

  .case-desc {
    font-size: 16px;
    margin-bottom: 18px;
  }

  .case-list {
    margin-bottom: 20px;
  }

  .case-list li {
    font-size: 14px;
    padding-left: 24px;
    margin-bottom: 10px;
  }

  .case-list li::before {
    width: 14px;
    height: 14px;
    top: 4px;
  }

  .case-btn {
    width: 100%;
    height: 44px;
    font-size: 15px;
  }

  .case-photo {
    min-height: 180px;
  }

  .case-overlay {
    width: 120px;
    left: 14px;
    bottom: 14px;
  }
}

/* Strength Section */
.strength-section {
  padding: 80px 0 88px;
  background: #fff;
}

.strength-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.strength-header {
  text-align: center;
  margin-bottom: 48px;
}

.strength-title {
  font-size: clamp(22px, 3.2vw, 36px);
  font-weight: 600;
  line-height: 1.4;
  color: #111;
  margin-bottom: 8px;
}

.strength-subtitle {
  font-size: 16px;
  color: #888;
  line-height: 1.7;
}

.strength-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.strength-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background-color: #1a2d4a;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.strength-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 14, 32, 0.48) 0%, rgba(6, 14, 32, 0.72) 100%);
  pointer-events: none;
}

.strength-card-1 {
  background-image: url("../images/sec6-pic-1@2x.3fea8ffa.png");
}

.strength-card-2 {
  background-image: url("../images/sec6-pic-2@2x.a990d72b.png");
  background-color: #243041;
}

.strength-card-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  min-height: 360px;
  padding: 36px 28px 32px;
  text-align: center;
  color: #fff;
}

.strength-card-head {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.strength-card-title {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.45;
  margin-bottom: 12px;
}

.strength-card-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
}

.strength-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  width: 100%;
  flex-shrink: 0;
}

.strength-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.strength-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: #fff;
  background: #1677ff;
  border-radius: 50%;
  flex-shrink: 0;
}

.strength-icon svg {
  width: 22px;
  height: 22px;
}

.strength-feature-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 12px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
}

.strength-feature-text strong {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}

@media (hover: hover) {
  .strength-card {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
  }

  .strength-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(22, 119, 255, 0.15);
  }
}

@media (max-width: 992px) {
  .strength-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .strength-card-content {
    min-height: 320px;
    padding: 28px 20px 24px;
  }

  .strength-features {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }

  .strength-feature-text {
    font-size: 11px;
  }

  .strength-feature-text strong {
    font-size: 11px;
  }
}

@media (max-width: 768px) {
  .strength-section {
    padding: 48px 0 56px;
  }

  .strength-inner {
    padding: 0 16px;
  }

  .strength-header {
    margin-bottom: 28px;
  }

  .strength-title {
    font-size: 20px;
  }

  .strength-subtitle {
    font-size: 13px;
  }

  .strength-card-title {
    font-size: 22px;
  }

  .strength-card-desc {
    font-size: 15px;
  }

  .strength-card-content {
    min-height: 300px;
    padding: 24px 16px 20px;
  }

  .strength-features {
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
  }

  .strength-feature {
    gap: 8px;
  }

  .strength-feature-text {
    font-size: 10px;
    line-height: 1.35;
  }

  .strength-feature-text strong {
    font-size: 10px;
  }

  .strength-icon {
    width: 36px;
    height: 36px;
  }

  .strength-icon svg {
    width: 18px;
    height: 18px;
  }
}

/* FAQ Section */
.faq-section {
  padding: 80px 0 88px;
  background: linear-gradient(180deg, #f8fbff 0%, #eef4fc 100%);
}

.faq-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.faq-title {
  font-size: clamp(22px, 3.2vw, 36px);
  font-weight: 600;
  line-height: 1.4;
  color: #111;
  text-align: center;
  margin-bottom: 40px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(22, 119, 255, 0.06);
  overflow: hidden;
  transition: box-shadow 0.4s ease;
  cursor: default;
}

@media (hover: hover) {
  .faq-item {
    cursor: pointer;
  }
}

.faq-item.active {
  box-shadow: 0 4px 24px rgba(22, 119, 255, 0.1);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 20px 24px;
  font-size: 16px;
  font-family: inherit;
  font-weight: 500;
  line-height: 1.5;
  color: #111;
  text-align: left;
  background: transparent;
  border: none;
  cursor: inherit;
  pointer-events: none;
  transition: color 0.25s ease;
}

.faq-question span {
  flex: 1;
  min-width: 0;
}

.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: #1677ff;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer-inner {
  overflow: hidden;
  min-height: 0;
}

.faq-answer-inner p {
  margin: 0;
  padding: 0 24px 20px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.85;
  color: #666;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer-inner p {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s ease 0.08s, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.08s;
}

@media (hover: hover) {
  .faq-item:hover .faq-question {
    color: #1677ff;
  }
}

@media (max-width: 768px) {
  .faq-section {
    padding: 48px 0 56px;
  }

  .faq-inner {
    padding: 0 16px;
  }

  .faq-title {
    font-size: 20px;
    margin-bottom: 28px;
  }

  .faq-question {
    padding: 16px 18px;
    font-size: 15px;
    gap: 12px;
    pointer-events: auto;
    cursor: pointer;
  }

  .faq-answer-inner p {
    font-size: 13px;
    padding: 0 18px 16px;
  }
}

/* Footer */
.site-footer {
  background: #121214;
  padding: 36px 0;
}

.footer-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.footer-brand-logo {
  display: block;
  width: auto;
  height: 40px;
  flex-shrink: 0;
}

.footer-brand-name {
  font-size: 22px;
  font-weight: 600;
  font-style: italic;
  color: #fff;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.footer-consult {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-qr {
  width: 72px;
  height: 72px;
  object-fit: cover;
  background: #fff;
  border-radius: 4px;
  flex-shrink: 0;
}

.footer-contact {
  flex-shrink: 0;
}

.footer-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  flex-shrink: 0;
}

.footer-icon svg {
  width: 20px;
  height: 20px;
}

.footer-text {
  color: #fff;
}

.footer-text p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
}

.footer-text-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
}

.footer-phone {
  font-size: 20px;
  font-weight: 600;
  color: #fff !important;
  letter-spacing: 0.02em;
}

@media (max-width: 992px) {
  .footer-inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px 40px;
  }

  .footer-brand {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding: 28px 0;
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 0 16px;
  }

  .footer-brand-logo {
    height: 34px;
  }

  .footer-brand-name {
    font-size: 18px;
  }

  .footer-qr {
    width: 64px;
    height: 64px;
  }

  .footer-phone {
    font-size: 18px;
  }
}

/* ===== 右侧浮动咨询 ===== */
.float-consult {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99;
  display: flex;
  flex-direction: column;
  border-radius: 10px 0 0 10px;
  overflow: visible;
  box-shadow: -2px 2px 16px rgba(0, 0, 0, 0.12);
}

.float-consult-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 72px;
  padding: 16px 10px;
  background: #fff;
  color: #333;
  text-decoration: none;
  border: none;
  border-bottom: 1px solid #f0f0f0;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.float-consult-item:last-child {
  border-bottom: none;
}

.float-consult-item:first-child {
  border-radius: 10px 0 0 0;
}

.float-consult-item:last-child {
  border-radius: 0 0 0 10px;
}

.float-consult-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: #1677ff;
}

.float-consult-icon svg {
  width: 100%;
  height: 100%;
}

.float-consult-label {
  font-size: 13px;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
}

.float-consult-item:hover,
.float-consult-item:focus-within {
  background: #1677ff;
  color: #fff;
}

.float-consult-item:hover .float-consult-icon,
.float-consult-item:focus-within .float-consult-icon {
  color: #fff;
}

.float-consult-popup {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  padding: 16px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
  white-space: nowrap;
}

.float-consult-popup::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: #fff;
  box-shadow: 2px -2px 4px rgba(0, 0, 0, 0.04);
}

.float-consult-has-popup:hover .float-consult-popup,
.float-consult-has-popup:focus-within .float-consult-popup {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
  pointer-events: auto;
}

.float-consult-qr {
  display: block;
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 4px;
}

.float-consult-popup p {
  margin: 10px 0 0;
  font-size: 13px;
  color: #666;
  text-align: center;
  white-space: nowrap;
}

.float-consult-popup-phone {
  padding: 18px 24px;
  text-align: center;
}

.float-consult-phone-title {
  margin: 0 0 8px;
  font-size: 13px;
  color: #999;
}

.float-consult-phone-num {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  color: #1677ff;
  text-decoration: none;
  letter-spacing: 0.5px;
}

.float-consult-phone-num:hover {
  color: #0958d9;
}

@media (max-width: 768px) {
  .float-consult {
    display: none;
  }
}

/* ===== 移动端底部吸底栏 ===== */
.mobile-bottom-bar {
  display: none;
}

@media (max-width: 768px) {
  body {
    padding-bottom: calc(56px + env(safe-area-inset-bottom, 0px));
  }

  .mobile-bottom-bar {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    height: calc(56px + env(safe-area-inset-bottom, 0px));
    padding-bottom: env(safe-area-inset-bottom, 0px);
    background: #fff;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.08);
  }

  .mobile-bottom-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 56px;
    font-size: 15px;
    text-decoration: none;
    transition: opacity 0.2s;
  }

  .mobile-bottom-btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
  }

  .mobile-bottom-btn-icon svg {
    width: 100%;
    height: 100%;
  }

  .mobile-bottom-btn:active {
    opacity: 0.85;
  }

  .mobile-bottom-btn-primary {
    color: #fff;
    background-color: #1677ff;
  }

  .mobile-bottom-btn-phone {
    color: #1677ff;
    background-color: #fff;
    border-left: 1px solid #f0f0f0;
  }
}
