:root {
  --network-title-gap: 8px;
  --network-card-shadow: 0 12px 34px rgba(15, 61, 133, 0.1);
  --network-soft-bg: #eef4ff;
  --network-card-border: #e6edf8;
  --button-height: 42px;
}
.section {
  padding: var(--section-y) 0;
}
.section__inner {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}
.section-heading {
  margin: 0 auto 32px;
  text-align: center;
}
.section-heading__title {
  margin: 0;
  color: var(--color-text);
  font-size: var(--font-size-title);
  font-weight: var(--weight-bold);
  line-height: var(--line-title);
}
.section-heading__subtitle {
  margin: var(--network-title-gap) 0 0;
  color: var(--color-muted);
  font-size: var(--font-size-subtitle);
  line-height: var(--line-subtitle);
}
.button {
  min-height: var(--button-height);
  line-height: 20px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-height);
  background: #ffffff;
  box-shadow: 0 1px 0 rgba(13, 31, 67, 0.08);
}
.site-header__inner {
  height: 100%;
  margin: 0 40px;
  display: flex;
  align-items: center;
  gap: 22px;
}
.site-header__brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 12px;
}
.site-header__logo {
  object-fit: contain;
}
.site-header__divider {
  object-fit: contain;
}
.site-header__slogan {
  object-fit: contain;
}
.site-header__nav {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex: 1 1 auto;
  height: 100%;
}
.site-header__nav-item {
  position: relative;
  display: flex;
  align-items: center;
}
.site-header__nav-link {
  display: inline-flex;
  align-items: center;
  height: 100%;
  padding: 0 15px;
  color: var(--color-text);
  font-size: 16px;
  font-weight: 500;
}
.site-header__nav-item--active .site-header__nav-link,
.site-header__nav-link:hover {
  color: var(--color-primary);
}
.site-header__dropdown {
  position: absolute;
  left: 50%;
  top: calc(100% - 1px);
  width: 190px;
  padding: 12px;
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  box-shadow: var(--network-card-shadow);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}
.site-header__nav-item:hover .site-header__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.site-header__dropdown a {
  display: block;
  padding: 9px 12px;
  border-radius: var(--radius-small);
  color: var(--color-muted);
}
.site-header__dropdown a:hover {
  color: var(--color-primary);
  background: #f2f6ff;
}
.site-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}
.site-header__hotline {
  min-width: 150px;
  color: #8b95a6;
  text-align: right;
  line-height: 18px;
}
.site-header__hotline span {
  display: inline-flex;
  align-items: center;
}
.site-header__hotline span img {
  margin-right: 4px;
}
.site-header__hotline strong {
  display: block;
  color: var(--color-primary);
  font-size: 22px;
  line-height: 26px;
}
.site-header__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 40px;
  border-radius: 8px;
  color: #ffffff;
  background: var(--color-primary);
  border: 1px solid var(--color-primary);
}
.site-header__button--ghost {
  color: var(--color-primary);
  background: #ffffff;
}
.site-header__menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.site-header__menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px 0;
  background: var(--color-text);
}
.network-hero {
  position: relative;
  height: 500px;
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(180deg, #1664ff 0%, #71baff 100%);
}
.network-hero__inner {
  width: min(var(--container), calc(100% - 48px));
  height: 100%;
  margin: 0 auto;
  padding-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.network-hero__heading {
  text-align: center;
}
.network-hero__title {
  margin: 0;
  color: #ffffff;
  font-size: 32px;
  font-weight: var(--weight-bold);
  line-height: 44px;
}
.network-hero__subtitle {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  line-height: 24px;
}
.network-query {
  width: min(1360px, 100%);
  margin-top: 34px;
  padding: 24px 60px 24px;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(9, 64, 150, 0.18);
}
.network-query__fields {
  display: grid;
  grid-template-columns: 1fr 44px 1fr auto;
  align-items: end;
  gap: 14px;
}
.network-query__field-label {
  display: block;
  width: 464px;
  height: 18px;
  margin-bottom: 8px;
  padding: 0;
  border-radius: 0;
  color: #1D2129;
  font-size: 16px;
  font-weight: 600;
  line-height: 18px;
}
.network-query__field select {
  width: 100%;
  height: 42px;
  padding: 0 42px 0 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-small);
  color: var(--color-muted);
  font-size: var(--font-size-small);
  appearance: none;
  background-color: #ffffff;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' fill='none' stroke='%23717883' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 10px 6px;
}
.network-query__swap {
  width: 44px;
  height: 42px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-small);
  color: var(--color-primary);
  background: #f7faff;
  cursor: pointer;
}
.network-query__submit {
  min-width: 132px;
}
.network-query__options {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 16px;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 20px;
}
.network-query__options label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-text);
}
.network-query__options input[type="checkbox"] {
  accent-color: var(--color-primary);
}
.network-query__formula {
  margin-left: auto;
}
.network-query__legend {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.network-query__legend i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #16c784;
}
.network-query__legend--warn i {
  background: #ffb020;
}
.network-query__legend--danger i {
  background: #f04438;
}
.network-query__result {
  margin-top: 14px;
  padding: 10px 14px;
  border-radius: var(--radius-small);
  color: var(--color-primary);
  background: #f2f6ff;
  font-size: var(--font-size-small);
  line-height: 22px;
}
.network-query__result:empty {
  display: none;
}
.network-hero__features {
  display: flex;
  justify-content: center;
  gap: 170px;
  margin-top: 30px;
}
.network-hero__feature {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 250px;
}
.network-hero__feature img {
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.84;
}
.network-hero__feature strong {
  display: block;
  color: #ffffff;
  font-size: 18px;
  line-height: 24px;
}
.network-hero__feature span {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  font-size: var(--font-size-small);
  line-height: 22px;
}
.network-backbone {
  background: #f2f6ff;
}
.network-backbone__intro {
  width: 1266px;
  height: 28px;
  margin: var(--network-title-gap) 0 0;
  color: var(--color-muted);
  font-size: var(--font-size-subtitle);
  line-height: 28px;
  text-align: center;
}
.network-stats {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-bottom: 22px;
  padding: 24px 16px;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(28, 86, 170, 0.08);
}
.network-stats__item {
  padding: 0 12px;
  text-align: center;
  border-right: 1px solid #edf1f7;
}
.network-stats__item:last-child {
  border-right: 0;
}
.network-stats__item strong {
  display: block;
  margin-bottom: 10px;
  color: var(--color-text);
  font-size: 26px;
  font-weight: var(--weight-bold);
  line-height: 36px;
}
.network-stats__item strong .network-stats__unit {
  display: inline;
  font-size: 16px;
  font-weight: 400;
}
.network-stats__item span {
  display: block;
  color: var(--color-muted);
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
}
.network-map {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--color-primary);
  box-shadow: 0 14px 34px rgba(22, 100, 255, 0.18);
}
.network-map__image {
  display: block;
  width: 100%;
  height: auto;
}
.network-map__overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.network-map__overlay path {
  fill: none;
  stroke: #6fe5a4;
  stroke-width: 3px;
  stroke-linecap: round;
  opacity: 0.86;
}
.network-map__overlay path:nth-of-type(2) {
  stroke: #ffdf6e;
}
.network-map__overlay path:nth-of-type(3) {
  stroke: #ffffff;
  opacity: 0.74;
}
.network-map__overlay path:nth-of-type(4) {
  stroke: #71baff;
}
.network-map__overlay circle {
  fill: #ffffff;
  stroke: #6fe5a4;
  stroke-width: 4px;
}
.network-map__overlay text {
  fill: #ffffff;
  font-size: 20px;
  font-weight: 600;
  paint-order: stroke;
  stroke: rgba(22, 100, 255, 0.82);
  stroke-width: 4px;
}
.network-advantages {
  position: relative;
  z-index: 2;
  width: calc(100% - 72px);
  margin: -42px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.network-advantages__card {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 4px 18px;
  padding: 28px 28px 26px;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--network-card-shadow);
}
.network-advantages__card img {
  grid-row: span 2;
  width: 46px;
  height: 46px;
  object-fit: contain;
}
.network-advantages__card h3 {
  margin: 0;
  color: var(--color-text);
  font-size: var(--font-size-card-title);
  font-weight: var(--weight-bold);
  line-height: 28px;
}
.network-advantages__card p {
  margin: 0;
  color: var(--color-muted);
  font-size: var(--font-size-small);
  line-height: var(--line-body);
}
.network-solutions {
  position: relative;
  overflow: hidden;
  background: #ffffff url("/img/v2026/sdwan/index/组-32.jpg") center bottom / 100% auto no-repeat;
}
.network-solutions__tabs {
  width: 572px;
  height: 54px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 0 auto 66px;
  padding: 12px 5px;
  border: 1px solid #eef2f8;
  border-radius: 999px;
  background: #f5f7fb;
}
.network-solutions__tab {
  min-width: 180px;
  height: 44px;
  padding: 0 26px;
  border: 0;
  border-radius: 99px;
  color: var(--color-text);
  background: transparent;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.network-solutions__tab:hover:not(.network-solutions__tab--active) {
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.network-solutions__tab--active {
  color: #ffffff;
  background: var(--color-primary);
  box-shadow: 0 8px 22px rgba(22, 100, 255, 0.22);
}
.network-solutions__cards {
  display: flex;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 300px;
  justify-content: center;
}
.network-product-card {
  width: 25%;
  padding: 30px 16px 28px;
  border: 1px solid #dbe1e9;
  border-radius: 0;
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 24px rgba(18, 45, 100, 0.06);
  cursor: pointer;
  text-align: center;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.network-product-card:hover,
.network-product-card--active {
  color: #ffffff;
  border-color: transparent;
  background: var(--color-primary);
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(22, 100, 255, 0.24);
}
.network-product-card__icon {
  margin: 0 auto 18px;
  object-fit: contain;
  transition: filter 0.2s ease;
}
.network-product-card:hover .network-product-card__icon,
.network-product-card--active .network-product-card__icon {
  filter: brightness(0) invert(1);
}
.network-product-card__title {
  display: block;
  font-size: 18px;
  font-weight: var(--weight-bold);
  line-height: 24px;
}
.network-reasons {
  background: var(--network-soft-bg);
}
.network-reasons__inner {
  width: min(1360px, calc(100% - 48px));
  margin: 0 auto;
}
.network-reasons__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.network-reasons__card {
  position: relative;
  overflow: hidden;
  padding: 24px 26px 24px;
  border: 1px solid #dcdcdc;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--network-card-shadow);
}
.network-reasons__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 78px;
}
.network-reasons__card--blue::before {
  background: linear-gradient(90deg, #1664ff 0%, #2f83ff 100%);
}
.network-reasons__card--cyan::before {
  background: linear-gradient(90deg, #1aa8ff 0%, #38d5df 100%);
}
.network-reasons__card--green::before {
  background: linear-gradient(90deg, #1fc28f 0%, #62d5c8 100%);
}
.network-reasons__card--purple::before {
  background: linear-gradient(90deg, #5158ff 0%, #8f7bff 100%);
}
.network-reasons__card img {
  position: absolute;
  top: 13px;
  right: 20px;
  z-index: 1;
  object-fit: contain;
}
.network-reasons__card h3 {
  position: relative;
  z-index: 2;
  margin: 0 72px 36px 0;
  color: #ffffff;
  font-size: 24px;
  font-weight: var(--weight-bold);
  line-height: 30px;
}
.network-reasons__card ul {
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 0;
  list-style: none;
}
.network-reasons__card li {
  position: relative;
  padding-left: 20px;
  color: var(--color-text);
  font-size: var(--font-size-small);
  line-height: var(--line-body);
}
.network-reasons__card li + li {
  margin-top: 10px;
}
.network-reasons__card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 5px;
  border-left: 2px solid #ff5263;
  border-bottom: 2px solid #ff5263;
  transform: rotate(-45deg);
}
.network-partners {
  background: #ffffff;
}
.network-partners__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}
.network-partners__grid img {
  height: auto;
  object-fit: contain;
  border: 1px solid #edf1f7;
  background: #ffffff;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.network-partners__grid img:hover {
  border-color: #cfdcff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(22, 100, 255, 0.1);
}
.network-docs {
  background: #f2f6ff;
}
.network-docs__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.network-docs__card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
  padding: 22px 24px;
  border: 1px solid #dbe1e9;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 4px 16px rgba(18, 45, 100, 0.05);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.network-docs__card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 36px;
  border-radius: 0 3px 3px 0;
  background: var(--color-primary);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.network-docs__card:hover {
  border-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(22, 100, 255, 0.14);
}
.network-docs__card:hover::before {
  opacity: 1;
}
.network-docs__card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 10px;
  color: var(--color-primary);
  background: #e8f0ff;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.network-docs__card h3 {
  margin: 0;
  color: var(--color-text);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}
.global-consult {
  padding: var(--section-y) 0;
  color: #ffffff;
  background: #045fff url("/img/v2026/sdwan/index/consult-bg.jpg") center / cover no-repeat;
}
.global-consult__inner {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}
.global-consult__content h2 {
  margin: 0;
  color: #ffffff;
  font-size: 28px;
  font-weight: var(--weight-bold);
  line-height: 38px;
}
.global-consult__content p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  line-height: 26px;
}
.global-consult__actions {
  display: flex;
  align-items: center;
  gap: 24px;
}
.global-consult__button {
  min-width: 210px;
  height: 48px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid transparent;
  text-decoration: none;
  transition: color 0.3s ease, background 0.3s ease;
}
.global-consult__button--outline {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
}
.global-consult__button--outline:hover {
  color: var(--color-primary);
  background: #ffffff;
}
.global-consult__button--light {
  color: #1d2129;
  border-color: #ffffff;
  background: #ffffff;
}
.global-consult__button--light:hover {
  color: var(--color-primary);
}
.toast {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 80;
  max-width: 320px;
  padding: 12px 18px;
  border-radius: 6px;
  color: #ffffff;
  background: rgba(29, 33, 41, 0.92);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}
.toast--visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@media (max-width: 1320px) {
  .site-header__inner {
    margin: 0 24px;
    gap: 14px;
  }
  .site-header__nav-link {
    padding: 0 10px;
    font-size: 15px;
  }
  .site-header__hotline {
    min-width: 132px;
  }
  .site-header__hotline strong {
    font-size: 19px;
  }
}
@media (max-width: 1100px) {
  .site-header {
    display: none;
  }
  .site-header__inner {
    justify-content: space-between;
  }
  .site-header__menu-toggle {
    display: block;
  }
  .site-header__nav,
  .site-header__actions {
    position: absolute;
    left: 0;
    right: 0;
    display: none;
    background: #ffffff;
    box-shadow: 0 12px 24px rgba(13, 31, 67, 0.12);
  }
  .site-header__nav {
    top: var(--header-height);
    height: auto;
    padding: 10px 24px;
    flex-direction: column;
    align-items: stretch;
  }
  .site-header--open .site-header__nav {
    display: flex;
  }
  .site-header__actions {
    top: calc(var(--header-height) + 316px);
    padding: 16px 24px;
    justify-content: flex-start;
  }
  .site-header--open .site-header__actions {
    display: flex;
  }
  .site-header__nav-item {
    display: block;
  }
  .site-header__nav-link {
    height: 48px;
    padding: 0;
  }
  .site-header__dropdown {
    position: static;
    display: none;
    width: 100%;
    margin-bottom: 8px;
    padding: 4px;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-radius: 8px;
  }
  .site-header__nav-item:hover .site-header__dropdown {
    display: block;
    transform: none;
  }
  :root {
    --network-title-gap: 4px;
    --font-size-card-title: 16px;
  }
  .section-heading {
    margin-bottom: 16px;
  }
  .network-advantages__card p {
    font-size: 12px;
  }
  .network-advantages__card img {
    width: 30px;
    height: auto;
  }
  .network-stats__item strong {
    font-size: 18px;
    line-height: 26px;
  }
  .network-stats__item span {
    font-size: 12px;
    line-height: 17px;
  }
  .network-advantages {
    width: 100%;
    gap: 16px;
    margin-top: 24px;
  }
  .network-advantages__card {
    padding: 20px 14px 18px;
    gap: 4px 12px;
    grid-template-columns: 42px 1fr;
  }
  .network-solutions__cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .network-docs__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .network-hero__inner {
    padding-top: 36px;
  }
  .network-hero__subtitle {
    font-size: 14px;
    line-height: 22px;
  }
  .network-hero__features {
    gap: 48px;
  }
  .network-hero__feature {
    min-width: 0;
  }
  .network-hero__feature img {
    width: 36px;
    height: 36px;
  }
  .network-hero__feature strong {
    font-size: 16px;
  }
  .network-query {
    padding: 18px;
    margin-top: 24px;
  }
  .network-query__field span {
    width: auto;
  }
  .network-query__formula {
    display: none;
  }
  .network-query__options {
    gap: 10px 14px;
  }
  .network-solutions__tabs {
    margin-bottom: 36px;
  }
  .network-solutions__cards {
    margin-bottom: 120px;
  }
  .network-product-card {
    padding: 22px 12px 20px;
  }
  .network-product-card__icon {
    width: 36px;
    height: 36px;
    margin-bottom: 12px;
  }
  .network-product-card__title {
    font-size: 14px;
  }
  .network-reasons__card::before {
    height: 56px;
    border-radius: 8px 8px 0 0;
  }
  .network-reasons__card h3 {
    font-size: 16px;
    line-height: 22px;
    margin-right: 52px;
    margin-bottom: 28px;
  }
  .network-reasons__card {
    padding: 16px 18px 18px;
  }
  .network-reasons__card img {
    width: 42px;
    height: 42px;
    top: 10px;
    right: 14px;
  }
  .network-reasons__card li {
    line-height: 22px;
  }
  .network-reasons__card li + li {
    margin-top: 6px;
  }
  .network-docs__card h3 {
    font-size: 14px;
    line-height: 24px;
  }
  .network-docs__card {
    padding: 18px 20px;
  }
  .network-docs__card span {
    width: 36px;
    height: 36px;
    font-size: 15px;
  }
  .global-consult {
    padding: 40px 0;
  }
  .global-consult__content h2 {
    font-size: 24px;
    line-height: 32px;
  }
  .global-consult__content p {
    font-size: 14px;
    line-height: 22px;
  }
  .global-consult__actions {
    gap: 16px;
  }
  .global-consult__button {
    min-width: 180px;
    height: 42px;
    font-size: 14px;
  }
  .network-map__overlay {
    display: none;
  }
}
@media (max-width: 860px) {
  :root {
    --section-y: 48px;
    --font-size-title: 24px;
    --font-size-subtitle: 16px;
    --line-title: 34px;
    --line-subtitle: 26px;
  }
  .section__inner,
  .network-hero__inner,
  .network-reasons__inner,
  .global-consult__inner {
    width: calc(100% - 32px);
  }
  .network-hero {
    height: auto;
  }
  .network-hero__inner {
    padding: 36px 0;
  }
  .network-hero__subtitle {
    font-size: 13px;
    line-height: 20px;
  }
  .network-hero__feature img {
    width: 30px;
    height: 30px;
  }
  .network-hero__feature strong {
    font-size: 15px;
    line-height: 20px;
  }
  .network-hero__feature span {
    font-size: 12px;
    line-height: 18px;
  }
  .network-hero__title {
    font-size: 26px;
    line-height: 36px;
  }
  .network-query {
    margin-top: 24px;
    padding: 18px;
  }
  .network-query__fields {
    grid-template-columns: 1fr 44px 1fr;
  }
  .network-query__submit {
    grid-column: 1 / -1;
  }
  .network-query__formula {
    margin-left: 0;
  }
  .network-hero__features {
    gap: 24px;
    width: 100%;
    justify-content: space-between;
  }
  .network-hero__feature {
    min-width: 0;
    flex: 1 1 0;
  }
  .network-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 16px;
    padding: 16px 8px;
  }
  .network-stats__item:nth-child(3n) {
    border-right: 0;
  }
  .network-stats__item:nth-child(n + 4) {
    border-top: 1px solid #edf1f7;
    padding-top: 16px;
  }
  .network-stats__item strong {
    font-size: 20px;
    line-height: 28px;
  }
  .network-stats__item span {
    font-size: 12px;
    line-height: 17px;
  }
  .network-advantages {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .network-map__overlay {
    display: none;
  }
  .network-solutions__tabs {
    width: 100%;
    height: auto;
    flex-wrap: nowrap;
    overflow: visible;
    justify-content: center;
    padding-bottom: 0;
  }
  .network-solutions__tab {
    flex: 1 1 0;
    min-width: 0;
    padding: 0 10px;
    font-size: 16px;
  }
  .network-solutions__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 120px;
  }
  .network-product-card {
    padding: 20px 10px 18px;
  }
  .network-product-card__icon {
    width: 32px;
    height: 32px;
  }
  .network-reasons__grid {
    grid-template-columns: 1fr;
  }
  .network-reasons__card h3 {
    font-size: 15px;
    line-height: 22px;
    margin-right: 48px;
    margin-bottom: 24px;
  }
  .network-reasons__card {
    overflow: visible;
    padding: 14px 16px 20px;
  }
  .network-reasons__card::before {
    border-radius: 8px 8px 0 0;
  }
  .network-reasons__card img {
    width: 36px;
    height: 36px;
    top: 10px;
    right: 12px;
  }
  .network-reasons__card li {
    font-size: 13px;
    line-height: 20px;
  }
  .network-reasons__card li + li {
    margin-top: 6px;
  }
  .network-partners__grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .network-docs__card {
    padding: 16px 16px;
  }
  .network-docs__card h3 {
    font-size: 13px;
    line-height: 20px;
  }
  .network-docs__card span {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
  .global-consult {
    padding: 36px 0;
  }
  .global-consult__inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }
  .global-consult__content h2 {
    font-size: 22px;
    line-height: 30px;
  }
  .global-consult__content p {
    font-size: 13px;
    line-height: 20px;
  }
  .global-consult__actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .global-consult__button {
    width: 100%;
    min-width: 0;
    height: 42px;
    font-size: 14px;
  }
}
@media (max-width: 560px) {
  :root {
    --font-size-subtitle: 14px;
  }
  .site-header__inner {
    margin: 0 16px;
  }
  .site-header__divider,
  .site-header__slogan,
  .site-header__hotline {
    display: none;
  }
  .site-header__actions {
    top: calc(var(--header-height) + 316px);
  }
  .site-header__button {
    width: 76px;
  }
  .network-hero {
    height: auto;
  }
  .network-hero__inner {
    padding-top: 28px;
    padding-bottom: 28px;
  }
  .network-hero__title {
    font-size: 22px;
    line-height: 30px;
  }
  .network-hero__subtitle {
    font-size: 12px;
    line-height: 18px;
    margin-top: 6px;
  }
  .network-hero__feature img {
    width: 28px;
    height: 28px;
  }
  .network-hero__feature strong {
    font-size: 14px;
    line-height: 18px;
  }
  .network-hero__feature span {
    font-size: 12px;
    line-height: 16px;
  }
  .network-query {
    padding: 14px;
    margin-top: 20px;
  }
  .network-query__fields {
    grid-template-columns: 1fr 44px 1fr;
  }
  .network-query__field span {
    width: auto;
  }
  .network-query__swap {
    justify-self: center;
  }
  .network-query__options {
    gap: 10px 14px;
  }
  .network-query__legend,
  .network-query__formula {
    display: none;
  }
  .network-hero__features {
    flex-direction: column;
    gap: 18px;
  }
  .network-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 14px;
    padding: 14px 6px;
  }
  .network-stats__item:nth-child(2n) {
    border-right: 0;
  }
  .network-stats__item:nth-child(n + 3) {
    border-top: 1px solid #edf1f7;
    padding-top: 14px;
  }
  .network-stats__item strong {
    font-size: 17px;
    line-height: 24px;
  }
  .network-stats__item span {
    font-size: 11px;
    line-height: 16px;
  }
  .network-advantages {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .network-advantages__card {
    grid-template-columns: 30px 1fr;
    padding: 16px 12px 14px;
    gap: 3px 10px;
  }
  .network-solutions__tabs {
    width: 100%;
    border-radius: 12px;
    padding: 8px;
    gap: 6px;
  }
  .network-solutions__tab {
    flex: 1 1 0;
    min-width: 0;
    height: 36px;
    padding: 0 8px;
    font-size: 16px;
    border-radius: 8px;
  }
  .network-solutions__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 70px;
    gap: 8px;
  }
  .network-product-card {
    padding: 16px 8px 14px;
  }
  .network-product-card__icon {
    width: 28px;
    height: 28px;
    margin-bottom: 8px;
  }
  .network-product-card__title {
    font-size: 14px;
    line-height: 20px;
  }
  .network-docs__grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .network-docs__card {
    padding: 14px 16px;
    gap: 10px;
  }
  .network-docs__card span {
    width: 28px;
    height: 28px;
    font-size: 13px;
  }
  .network-docs__card h3 {
    font-size: 13px;
    line-height: 20px;
  }
  .network-partners__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
  }
  .network-reasons__card h3 {
    font-size: 18px;
    line-height: 20px;
    margin-right: 44px;
    margin-bottom: 20px;
  }
  .network-reasons__card {
    overflow: visible;
    padding: 12px 14px 18px;
  }
  .network-reasons__card::before {
    height: 42px;
    border-radius: 8px 8px 0 0;
  }
  .network-reasons__card img {
    width: 32px;
    height: 32px;
    top: 8px;
    right: 10px;
  }
  .network-reasons__card li {
    font-size: 12px;
    line-height: 18px;
    padding-left: 16px;
  }
  .network-reasons__card li + li {
    margin-top: 6px;
  }
  .network-reasons__card li::before {
    top: 7px;
    width: 6px;
    height: 4px;
  }
  .global-consult {
    padding: 32px 0;
    position: relative;
    overflow: hidden;
    background-color: #006dff;
    background-image: none;
  }
  .global-consult::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url("/img/v2026/sdwan/index/consult-bg.jpg") center bottom / cover no-repeat;
    opacity: 0.32;
    pointer-events: none;
  }
  .global-consult__inner {
    position: relative;
    z-index: 1;
    gap: 18px;
  }
  .global-consult__content h2 {
    font-size: 20px;
    line-height: 28px;
  }
  .global-consult__content p {
    font-size: 13px;
    line-height: 20px;
  }
  .global-consult__actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .global-consult__button {
    width: 100%;
    min-width: 0;
    height: 42px;
    font-size: 14px;
  }
  .global-consult__button--outline {
    color: #ffffff;
    border-color: #ffffff;
    background: var(--color-primary);
  }
}
.el-select-group__title {
  color: #2563eb;
  font-weight: 600;
  border-bottom: 1px solid #98b3ed;
  font-size: 14px;
  padding-top: 5px;
}
.el-select-group__title:first-child {
  padding-top: 0;
}
.el-select-group .el-select-dropdown__item {
  padding-left: 28px;
}
.el-select__input {
  opacity: 0 !important;
}
.el-select__input:focus {
  border: unset !important;
  box-shadow: unset !important;
}
