@font-face {
  font-family: 'OPPOSans';
  src: url('/assets/fonts/OPPO Sans 4.0.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #122235;
  --ink-soft: #253a50;
  --blue: #1769e0;
  --blue-dark: #0d4ea9;
  --cyan: #00a7b5;
  --lime: #b8e34b;
  --paper: #f4f7fb;
  --white: #fff;
  --muted: #69798b;
  --line: #dfe6ee;
  --line-dark: rgba(255, 255, 255, .18);
  --radius: 8px;
  --max: 1280px;
  --pad: max(24px, calc((100vw - var(--max)) / 2));
  --display: "OPPOSans", "Noto Sans SC", "Source Han Sans SC", "Microsoft YaHei", sans-serif;
  --body: "OPPOSans", "Noto Sans SC", "Source Han Sans SC", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: -60px;
  left: 16px;
  padding: 10px 16px;
  border-radius: 6px;
  background: var(--lime);
}

.skip-link:focus {
  top: 12px;
}

.section-shell {
  width: 100%;
  max-width: calc(var(--max) + 48px);
  margin-inline: auto;
  padding-inline: 24px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
}

.section-label::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 5px rgba(0, 167, 181, .1);
}

.section-label.light {
  color: #d9edf5;
}

.section-label.light::before {
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(184, 227, 75, .12);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 14px;
  left: max(16px, calc((100vw - 1380px) / 2));
  right: max(16px, calc((100vw - 1380px) / 2));
  height: 66px;
  display: grid;
  grid-template-columns: 240px 1fr auto;
  align-items: center;
  padding: 0 20px;
  border: 1px solid rgba(218, 228, 237, .9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 12px 35px rgba(27, 51, 78, .08);
  backdrop-filter: blur(18px);
  transition: .25s ease;
}

.site-header.scrolled {
  top: 8px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 12px 32px rgba(27, 51, 78, .12);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand img {
  width: 38px;
  height: 38px;
}

.brand span {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand strong {
  color: var(--ink);
  font-size: 17px;
}

.brand small {
  margin-top: 3px;
  color: #7a8896;
  font-size: 10px;
}

.desktop-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  align-self: stretch;
}

.desktop-nav > a {
  position: relative;
  display: grid;
  place-items: center;
  padding: 0 20px;
  height: 100%;
  color: #5d6d7e;
  font-size: 14px;
  transition: color .2s;
}

.desktop-nav > .nav-item-dropdown {
  display: flex;
  align-items: center;
  height: 100%;
}

.desktop-nav > .nav-item-dropdown > a {
  position: relative;
  display: grid;
  place-items: center;
  padding: 0 20px;
  height: 100%;
  color: #5d6d7e;
  font-size: 14px;
  transition: color .2s;
}

.desktop-nav > a:hover,
.desktop-nav > a.active,
.desktop-nav > .nav-item-dropdown > a:hover,
.desktop-nav > .nav-item-dropdown > a.active {
  color: var(--ink);
}

.desktop-nav > a::after,
.desktop-nav > .nav-item-dropdown > a::after {
  content: "";
  position: absolute;
  bottom: 11px;
  left: 50%;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--blue);
  transition: .2s;
}

.desktop-nav > a:hover::after,
.desktop-nav > a.active::after,
.desktop-nav > .nav-item-dropdown > a:hover::after,
.desktop-nav > .nav-item-dropdown > a.active::after {
  left: 32%;
  width: 36%;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 7px;
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.header-cta span {
  color: var(--lime);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: none;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 6px auto;
  background: var(--ink);
}

.mobile-menu {
  position: fixed;
  z-index: 990;
  inset: 0;
  padding: 105px 24px 30px;
  background: rgba(244, 247, 251, .98);
  backdrop-filter: blur(20px);
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
}

.mobile-menu a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  font-size: 22px;
  font-weight: 700;
}

.mobile-menu a span {
  color: #9aabba;
  font-size: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid var(--blue);
  border-radius: 7px;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  transition: transform .2s, background .2s, box-shadow .2s;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--blue-dark);
  box-shadow: 0 12px 26px rgba(23, 105, 224, .22);
}

.button-light {
  border-color: #fff;
  background: #fff;
  color: var(--ink);
}

.button-light:hover {
  background: var(--lime);
  border-color: var(--lime);
  box-shadow: 0 12px 26px rgba(0, 0, 0, .16);
}

.button-secondary {
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
  box-shadow: none;
}

.button-secondary:hover {
  border-color: #aebdcb;
  background: #f9fbfd;
  box-shadow: none;
}

.ghost-link,
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.ghost-link {
  color: #dbe8f1;
}

.ghost-link span,
.text-link span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
}

.text-link {
  color: var(--blue);
}

.text-link span {
  background: #e6eefc;
}

.round-link {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid #b8c7d4;
  border-radius: 50%;
  font-size: 22px;
  transition: .2s;
}

.round-link:hover {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
  transform: rotate(-35deg);
}

.round-link.light {
  border-color: rgba(255, 255, 255, .4);
  color: #fff;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 44px;
}

.section-head h2 {
  margin: 12px 0 0;
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: 0;
}

.section-head>p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
}

.section-head.light {
  color: #fff;
}
/* Shared inner hero */
.inner-hero {
  min-height: 560px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: end;
  gap: 8vw;
  padding: 150px var(--pad) 76px;
  background: #eaf0f5;
}

.inner-hero h1 {
  margin: 18px 0 20px;
  font-size: clamp(48px, 5.6vw, 78px);
  line-height: 1.15;
  letter-spacing: 0;
}

.inner-hero>div>p {
  max-width: 650px;
  color: var(--muted);
  font-size: 18px;
}

.inner-hero>aside {
  align-self: end;
}

.catalog-hero aside {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid #cedae4;
  border-radius: var(--radius);
  background: #cedae4;
}

.catalog-hero aside div {
  min-height: 130px;
  padding: 22px;
  background: rgba(255, 255, 255, .76);
}

.catalog-hero aside strong,
.catalog-hero aside span {
  display: block;
}

.catalog-hero aside strong {
  color: var(--blue);
  font-size: 20px;
}

.catalog-hero aside span {
  margin-top: 28px;
  color: var(--muted);
  font-size: 12px;
}

/* Product catalog *//* Footer */
.site-footer {
  padding: 90px var(--pad) 24px;
  background: #102235;
  color: #fff;
}

.footer-action {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  padding-bottom: 65px;
  border-bottom: 1px solid var(--line-dark);
}

.footer-action h2 {
  margin: 18px 0 0;
  font-size: clamp(36px, 4.5vw, 62px);
  line-height: 1.2;
  letter-spacing: 0;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.7fr .65fr 1fr;
  gap: 8vw;
  padding: 55px 0;
}

.brand-light strong {
  color: #fff;
}

.brand-light small {
  color: #9cb0be;
}

.footer-brand>p {
  max-width: 450px;
  color: #9db0bd;
}

.footer-main h3 {
  margin: 0 0 16px;
  color: #8097a7;
  font-size: 12px;
}

.footer-main nav,
.footer-main>div:last-child {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.footer-main a,
.footer-main p {
  margin: 0;
  color: #c3d0d8;
}

.footer-bottom {
  display: flex;
  gap: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line-dark);
  color: #788f9f;
  font-size: 11px;
}

.footer-bottom a {
  margin-left: auto;
}

.floating-contact {
  position: fixed;
  z-index: 80;
  right: 18px;
  bottom: 22px;
  display: flex;
  width: 62px;
  height: 62px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(18, 34, 53, .22);
  font-size: 11px;
  font-weight: 700;
}

.floating-contact b {
  line-height: 1;
}

@keyframes floatMachine {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-9px);
  }
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 210px 1fr auto;
  }

  .desktop-nav > a,
  .desktop-nav > .nav-item-dropdown > a {
    padding: 0 12px;
  }

  .home-hero {
    grid-template-columns: 1fr 1fr;
  }

  .home-hero-visual img {
    width: 700px;
  }

  .visual-chip {
    display: none;
  }

  .home-product-tile,
  .home-product-tile:first-child,
  .home-product-tile:nth-child(5) {
    grid-column: span 6;
  }

  .home-product-tile:first-child>a,
  .home-product-tile:nth-child(5)>a {
    grid-template-columns: 1fr;
  }

  .catalog-layout {
    grid-template-columns: 210px 1fr;
    gap: 30px;
  }

  .catalog-grid.compact {
    grid-template-columns: repeat(2, 1fr);
  }

  .commerce-product {
    gap: 36px;
  }

  .product-info-layout {
    gap: 45px;
  }
}

@media (max-width: 820px) {
  :root {
    --pad: 24px;
  }

  .site-header {
    top: 10px;
    right: 12px;
    left: 12px;
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .home-hero {
    min-height: 940px;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    padding-top: 125px;
  }

  .home-hero-copy {
    max-width: 680px;
  }

  .home-hero-visual {
    min-height: 420px;
  }

  .home-hero-visual img {
    width: 760px;
  }

  .hero-proof {
    grid-template-columns: 1fr 1fr;
  }

  .hero-proof div:nth-child(2) {
    border-right: 0;
  }

  .home-intro,
  .inner-hero,
  .solution-index,
  .service-overview {
    grid-template-columns: 1fr;
  }

  .intro-copy {
    max-width: 620px;
  }

  .inner-hero {
    min-height: 600px;
    gap: 35px;
    padding-top: 135px;
  }

  .inner-hero aside {
    width: 100%;
  }

  .catalog-hero aside {
    max-width: 650px;
  }

  .solution-showcase,
  .value-cards {
    grid-template-columns: 1fr;
  }

  .solution-panel {
    border-right: 0;
  }

  .process-track,
  .method-grid,
  .delivery-strip {
    grid-template-columns: 1fr 1fr;
  }

  .process-track>div:nth-child(2),
  .method-grid>div:nth-child(2),
  .delivery-strip>div:nth-child(2) {
    border-right: 0;
  }

  .catalog-layout {
    grid-template-columns: 1fr;
  }

  .catalog-sidebar {
    position: static;
  }

  .catalog-sidebar>div:first-child {
    display: none;
  }

  .catalog-sidebar nav {
    flex-direction: row;
    overflow-x: auto;
    margin-top: 0;
    border: 0;
    gap: 8px;
    scrollbar-width: none;
  }

  .catalog-sidebar nav a {
    min-width: max-content;
    min-height: 40px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #fff;
  }

  .catalog-sidebar nav a.active {
    background: var(--ink);
    color: #fff;
  }

  .catalog-help {
    display: none;
  }

  .commerce-product {
    grid-template-columns: 1fr;
  }

  .product-purchase {
    position: static;
  }

  .product-main-media,
  .product-main-media img {
    min-height: 480px;
  }

  .product-info-layout {
    grid-template-columns: 1fr;
  }

  .product-tabs-nav {
    top: 86px;
  }

  .solution-index {
    gap: 50px;
  }

  .solution-intro,
  .service-copy {
    position: static;
  }

  .solution-cases {
    gap: 48px;
  }

  .solution-case {
    gap: 28px;
  }

  .solution-detail-body {
    grid-template-columns: 1fr;
  }

  .solution-flow {
    position: static;
  }

  .sol-detail {
    padding-top: 60px;
  }

  .sol-related-grid {
    grid-template-columns: 1fr 1fr;
  }

  .news-grid {
    grid-template-columns: 1fr 1fr;
  }

  .news-detail-layout {
    grid-template-columns: 1fr;
  }

  .news-detail-layout aside {
    display: none;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 40px;
    padding-bottom: 80px;
  }

  .about-sidebar {
    position: static;
  }

  .about-sidebar nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }

  .about-sidebar nav a {
    border-bottom: 0;
    padding: 8px 16px;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    font-size: 13px;
  }

  .about-sidebar nav a.active {
    background: #2c6fe8;
    color: #fff;
    border-color: #2c6fe8;
  }

  .about-story-grid {
    grid-template-columns: 1fr;
  }

  .about-visual {
    min-height: 400px;
  }

  .service-overview {
    gap: 45px;
  }

  .contact-page {
    grid-template-columns: 1fr;
  }

  .contact-side {
    min-height: 700px;
    padding-top: 130px;
  }

  .contact-form {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1/-1;
  }
}

@media (max-width: 560px) {
  :root {
    --pad: 20px;
  }

  .section-shell {
    padding-inline: 0;
  }

  .site-header {
    height: 60px;
    padding: 0 13px;
  }

  .brand img {
    width: 34px;
    height: 34px;
  }

  .brand small {
    display: none;
  }

  .brand strong {
    font-size: 16px;
  }

  .section-head {
    align-items: flex-start;
    margin-bottom: 30px;
  }

  .section-head h2 {
    font-size: 34px;
  }

  .round-link {
    width: 46px;
    height: 46px;
    flex: 0 0 auto;
  }

  .home-hero {
    min-height: 820px;
    padding: 112px 20px 130px;
  }

  .home-hero h1 {
    font-size: 48px;
  }

  .home-hero-copy>p {
    font-size: 15px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .home-hero-visual {
    min-height: 300px;
    margin: 0 -60px;
  }

  .home-hero-visual img {
    width: 620px;
  }

  .hero-proof {
    bottom: 18px;
    right: 20px;
    left: 20px;
  }

  .hero-proof div {
    padding: 12px 8px 0;
    gap: 8px;
  }

  .hero-proof span {
    font-size: 11px;
  }

  .home-intro,
  .home-products,
  .home-process,
  .home-news,
  .about-story {
    padding-top: 70px;
    padding-bottom: 75px;
  }

  .intro-heading h2 {
    font-size: 35px;
  }

  .intro-copy p {
    font-size: 16px;
  }

  .home-product-gallery {
    grid-template-columns: 1fr;
  }

  .home-product-tile,
  .home-product-tile:first-child,
  .home-product-tile:nth-child(5) {
    grid-column: auto;
  }

  .tile-media {
    min-height: 230px;
  }

  .home-solutions,
  .solution-method,
  .about-values {
    padding: 75px 0;
  }

  .solution-panel {
    grid-template-columns: 30px 1fr 18px;
    min-height: 160px;
    padding: 22px 0;
  }

  .process-track,
  .method-grid,
  .delivery-strip {
    grid-template-columns: 1fr;
  }

  .process-track>div,
  .process-track>div:not(:first-child),
  .method-grid>div,
  .method-grid>div:first-child,
  .delivery-strip>div {
    min-height: 155px;
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .method-grid>div,
  .method-grid>div:first-child {
    border-color: var(--line-dark);
    padding-inline: 0;
  }

  .process-track h3,
  .method-grid h3,
  .delivery-strip h3 {
    margin-top: 26px;
  }

  .home-news-grid {
    grid-template-columns: 1fr;
  }

  .inner-hero {
    min-height: 540px;
    padding: 120px 20px 55px;
  }

  .inner-hero h1 {
    font-size: 43px;
  }

  .inner-hero>div>p {
    font-size: 15px;
  }

  .catalog-hero aside {
    grid-template-columns: 1fr 1fr;
  }

  .catalog-hero aside div:last-child {
    grid-column: 1/-1;
  }

  .catalog-hero aside div {
    min-height: 90px;
    padding: 15px;
  }

  .catalog-hero aside span {
    margin-top: 10px;
  }

  .catalog-layout {
    padding-top: 40px;
    padding-bottom: 80px;
  }

  .catalog-toolbar span {
    display: none;
  }

  .catalog-grid,
  .catalog-grid.compact {
    grid-template-columns: 1fr;
  }

  .catalog-media {
    aspect-ratio: 1.35;
  }

  .catalog-copy p {
    min-height: 0;
  }

  .breadcrumb {
    padding-top: 96px;
    overflow: hidden;
    white-space: nowrap;
  }

  .commerce-product {
    gap: 28px;
    padding-bottom: 60px;
  }

  .product-main-media,
  .product-main-media img {
    min-height: 360px;
  }

  .product-purchase h1 {
    font-size: 37px;
  }

  .purchase-benefits {
    grid-template-columns: 1fr;
  }

  .purchase-benefits>div {
    min-height: 75px;
    display: grid;
    grid-template-columns: 28px 1fr;
    align-items: center;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .purchase-benefits b {
    margin-top: 0;
  }

  .purchase-actions {
    grid-template-columns: 1fr;
  }

  .product-tabs-nav {
    top: 78px;
    gap: 20px;
    overflow-x: auto;
  }

  .product-info-layout {
    padding: 55px 0;
  }

  .spec-panel {
    padding: 22px;
  }

  .related-products {
    padding-bottom: 80px;
  }

  .solution-index {
    padding-top: 70px;
    padding-bottom: 80px;
  }

  .solution-intro h2 {
    font-size: 30px;
  }

  .solution-case,
  .solution-case:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .solution-case:nth-child(even) .case-media {
    order: 0;
  }

  .case-copy h2 {
    font-size: 26px;
  }

  .solution-detail-hero {
    min-height: 590px;
    padding-top: 125px;
  }

  .solution-detail-hero h1 {
    font-size: 43px;
  }

  .solution-detail-body {
    padding-top: 60px;
    padding-bottom: 80px;
  }

  .article-conversion {
    padding: 24px;
  }

  .sol-detail {
    padding-top: 50px;
    padding-bottom: 40px;
  }

  .sol-detail-nav {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .sol-related-grid {
    grid-template-columns: 1fr;
  }

  .sol-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .news-detail-head {
    padding-top: 120px;
  }

  .news-detail-head h1 {
    font-size: 40px;
  }

  .news-detail-layout {
    padding-top: 50px;
    padding-bottom: 80px;
  }

  .about-layout {
    padding-top: 30px;
    padding-bottom: 60px;
  }

  .about-story-grid {
    gap: 38px;
  }

  .about-visual {
    min-height: 300px;
  }

  .value-cards {
    grid-template-columns: 1fr;
  }

  .value-cards>div {
    min-height: 190px;
  }

  .value-cards h3 {
    margin-top: 38px;
  }

  .service-list {
    grid-template-columns: 1fr;
  }

  .service-promise .section-shell {
    grid-template-columns: 1fr;
  }

  .service-promise div div,
  .service-promise div div:first-child {
    padding: 15px 0;
    border-right: 0;
    border-bottom: 1px solid #c5d2da;
  }

  .downloads-page {
    padding-top: 45px;
    padding-bottom: 80px;
  }

  .download-heading {
    display: none;
  }

  .download-items a {
    grid-template-columns: 50px 1fr 20px;
    gap: 12px;
    padding: 18px 14px;
  }

  .download-items p {
    display: none;
  }

  .contact-side {
    min-height: 640px;
    padding: 120px 20px 60px;
  }

  .contact-side h1 {
    font-size: 42px;
  }

  .contact-side dl {
    grid-template-columns: 1fr;
  }

  .contact-side dl div:last-child {
    grid-column: auto;
  }

  .contact-form {
    padding: 70px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-submit {
    align-items: flex-start;
    flex-direction: column;
  }

  .not-found {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-top: 110px;
  }

  .not-found-code {
    font-size: 120px;
  }

  .not-found-code i {
    width: 42px;
    height: 42px;
  }

  .not-found h1 {
    font-size: 36px;
  }

  .site-footer {
    padding: 70px 20px 22px;
  }

  .footer-action {
    align-items: flex-start;
    flex-direction: column;
    padding-bottom: 45px;
  }

  .footer-action h2 {
    font-size: 36px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    flex-wrap: wrap;
    gap: 10px 18px;
  }

  .footer-bottom a {
    margin-left: 0;
  }

  .floating-contact {
    right: 14px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }

  .sol-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .home-hero-visual img {
    animation: none;
  }
}

/* 首页参考站布局：大图首屏 + 图片主导的分区节奏 *//* Reference-site interaction polish */
.ref-hero-content {
  animation: refHeroIn .8s cubic-bezier(.22, .61, .36, 1) both;
}

.ref-hero-dots i {
  transition: width .25s ease, background .25s ease;
}

.ref-hero-dots i.active {
  width: 78px;
}

.ref-product-card:focus-within,
.ref-category-grid a:focus-visible,
.ref-solution-card:focus-visible,
.ref-news-grid article:focus-within {
  outline: 2px solid var(--lime);
  outline-offset: 4px;
}

.site-header a:focus-visible,
.button:focus-visible,
.ref-more:focus-visible,
.floating-contact:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
}

@keyframes refHeroIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 700px) {
  .site-page-home .site-header {
    padding-inline: 16px;
  }

  .site-page-home .header-cta {
    display: none;
  }

  .ref-hero-dots i.active {
    width: 56px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ref-hero-content {
    animation: none;
  }
}

/* Wonderful reference direction: light home/lifestyle commerce *//* Keep inner pages in the same light editorial commerce language */
body.site-page:not(.site-page-home) {
  background: #F7F8FA;
  color: #292929;
}

body.site-page:not(.site-page-home) .site-header {
  background: rgba(255, 255, 255, .96);
  border-color: #ecebe8;
  box-shadow: 0 3px 18px rgba(40, 34, 24, .06);
}

body.site-page:not(.site-page-home) .site-header .brand strong,
body.site-page:not(.site-page-home) .site-header .brand small,
body.site-page:not(.site-page-home) .desktop-nav > a,
body.site-page:not(.site-page-home) .desktop-nav > .nav-item-dropdown > a {
  color: #2b2b2b;
}

.inner-hero {
  background: #fff;
}

.inner-hero h1,
.section-head h2,
.solution-intro h2,
.case-copy h2,
.news-detail-head h1,
.product-purchase h1,
.contact-side h1 {
  font-weight: 500;
  color: #292929;
}

.home-solutions,
.solution-method,
.about-values,
.ref-stats {
  background: #fff;
  color: #292929;
}

.section-head.light,
.solution-method .section-head.light {
  color: #292929;
}

.section-label.light {
  color: #2c6fe8;
}

.section-label.light::before {
  background: #2c6fe8;
  box-shadow: 0 0 0 5px rgba(44, 111, 232, .1);
}

.method-grid>div,
.value-cards>div {
  border-color: #e7e5e1;
}

.method-grid p,
.value-cards p,
.solution-panel p {
  color: #77746e;
}

.solution-panel {
  border-color: #e7e5e1;
}

.solution-panel:hover {
  background: #F2F3F5;
}

.solution-panel>span,
.method-grid i,
.value-cards i {
  color: #2c6fe8;
}

.site-footer {
  background: #282622;
}

/* Homepage merchandising tiles use the supplied lifestyle photography while preserving TP product data *//* Footer rebuilt to mirror the reference site's airy service-and-contact layout */
.site-footer {
  padding: 0 var(--pad) 0;
  background: #fff;
  color: #252525;
  border-top: 1px solid #ececea;
}

.footer-action {
  display: none;
}

.footer-main {
  grid-template-columns: 1.2fr .8fr;
  gap: 70px;
  padding: 68px 0 34px;
}

.brand-light strong {
  color: #252525;
  font-size: 30px;
  font-weight: 500;
}

.brand-light small {
  color: #8a8d92;
}

.footer-brand>p {
  max-width: 580px;
  margin-top: 28px;
  color: #666a70;
  line-height: 1.9;
}

.footer-main h3 {
  margin-bottom: 16px;
  color: #8a8d92;
}

.footer-main nav,
.footer-main>div:last-child {
  gap: 10px;
}

.footer-main>div:last-child {
  align-items: flex-start;
  justify-self: end;
  min-width: 250px;
}

.footer-main>div:last-child p:first-of-type {
  color: #2d3035;
  font-size: 30px;
  line-height: 1.15;
  letter-spacing: .02em;
}

.footer-main>div:last-child p {
  color: #73777d;
}

.footer-main nav {
  grid-column: 1/-1;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0;
  padding-top: 25px;
  border-top: 1px solid #e8e8e6;
}

.footer-main nav h3 {
  display: none;
}

.footer-main nav a {
  padding-right: 20px;
  margin-right: 20px;
  border-right: 1px solid #d8dadd;
  color: #4d5157;
}

.footer-main nav a:last-child {
  border-right: 0;
}

.footer-bottom {
  margin: 0 calc(var(--pad) * -1);
  padding: 21px var(--pad);
  border-top: 0;
  background: #f2f3f4;
  color: #9299a2;
}

.footer-bottom a {
  color: #60666f;
}

@media (max-width: 700px) {
  .site-footer {
    padding-inline: 20px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 48px;
  }

  .footer-main>div:last-child {
    justify-self: start;
    min-width: 0;
  }

  .footer-main>div:last-child p:first-of-type {
    font-size: 26px;
  }

  .footer-main nav {
    grid-column: auto;
    gap: 13px 0;
  }

  .footer-main nav a {
    margin-right: 13px;
    padding-right: 13px;
  }

  .footer-bottom {
    margin-inline: -20px;
    padding-inline: 20px;
  }
}

.footer-contact .footer-contact-label {
  color: #9299a2;
  font-size: 13px;
}

.footer-contact .footer-contact-meta {
  margin-top: 8px;
  color: #9299a2;
  font-size: 12px;
}

.footer-contact .footer-phone {
  color: #2d3035;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: .02em;
  margin-bottom: 16px;
}

.footer-contact .footer-contact-label+.footer-contact-meta {
  margin-top: 4px;
}

/* Banner carousel *//* Footer geometry: brand left, contact block right, navigation below */
.footer-main {
  grid-template-columns: minmax(0, 1fr) 420px;
  align-items: start;
}

.footer-brand {
  grid-column: 1;
  grid-row: 1;
}

.footer-contact {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  width: 100%;
  max-width: 360px;
}

.footer-main nav {
  grid-column: 1/-1;
  grid-row: 2;
}

@media (max-width: 700px) {
  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-brand,
  .footer-contact,
  .footer-main nav {
    grid-column: 1;
    grid-row: auto;
  }

  .footer-contact {
    justify-self: start;
    max-width: none;
  }
}

.ref-support-grid div {
  align-items: center;
  text-align: center;
  min-height: 150px;
}

.ref-support-grid div img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  margin-bottom: 13px;
}

.ref-support-grid strong {
  font-size: 17px;
  font-weight: 600;
}

@media (max-width: 700px) {
  .ref-support-grid div {
    min-height: 125px;
    padding: 16px 10px;
  }

  .ref-support-grid div img {
    width: 38px;
    height: 38px;
    margin-bottom: 8px;
  }
}

/* ===== 移动端页面适配优化 ===== */
@media (max-width: 768px) {
  /* 产品中心页面 */
  .shop-hero {
    min-height: 280px;
  }

  .shop-hero-copy h1 {
    font-size: 36px;
  }

  .shop-catalog {
    padding-top: 24px;
    padding-bottom: 60px;
  }

  .shop-filters {
    padding: 12px 14px 4px;
    margin-bottom: 14px;
  }

  .shop-filters nav {
    gap: 16px;
    min-height: 40px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .shop-filters nav::-webkit-scrollbar {
    display: none;
  }

  .shop-filters a {
    font-size: 13px;
    min-height: 36px;
    white-space: nowrap;
  }

  .shop-toolbar {
    padding: 24px 0 14px;
  }

  .shop-toolbar strong {
    font-size: 17px;
  }

  .shop-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 60px;
  }

  .shop-card-copy {
    padding: 12px 10px 14px;
  }

  .shop-card-copy h2 {
    font-size: 14px;
  }

  .shop-card-copy p {
    font-size: 11px;
    min-height: 32px;
  }

  .shop-card-bottom {
    margin-top: 10px;
    padding-top: 8px;
  }

  .shop-card-bottom strong {
    font-size: 13px;
  }

  .shop-card-bottom a {
    font-size: 11px;
  }

  /* 解决方案页面 */
  .sol-hero {
    min-height: 280px;
  }

  .sol-hero h1 {
    font-size: 32px;
    padding: 0 20px;
  }

  .sol-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .sol-card {
    padding: 14px;
  }

  .sol-card-thumb {
    width: 48px;
    height: 48px;
  }

  .sol-card-body h3 {
    font-size: 14px;
  }

  .sol-card-body p {
    font-size: 12px;
    -webkit-line-clamp: 2;
  }

  .solution-cases {
    gap: 40px;
  }

  .solution-case {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .solution-case:nth-child(even) .case-media {
    order: 0;
  }

  .case-media {
    aspect-ratio: 1.6;
  }

  .case-copy h2 {
    font-size: 24px;
  }

  .case-copy p {
    font-size: 14px;
  }

  .method-grid {
    grid-template-columns: 1fr 1fr;
  }

  .method-grid > div {
    min-height: 180px;
    padding: 20px;
  }

  .method-grid h3 {
    font-size: 16px;
    margin-top: 40px;
  }

  .method-grid p {
    font-size: 13px;
  }

  /* 解决方案详情页 */
  .sol-detail {
    padding-top: 60px;
    padding-bottom: 40px;
    padding-inline: 20px;
  }

  .sol-detail-title {
    font-size: 26px;
  }

  .sol-detail-meta {
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
  }

  .sol-detail-body {
    font-size: 15px;
    line-height: 1.9;
  }

  .sol-detail-nav {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .sol-detail-next {
    text-align: left;
  }

  .sol-related {
    padding-top: 50px;
    padding-bottom: 60px;
    padding-inline: 20px;
  }

  .sol-related-heading {
    font-size: 24px;
    margin-bottom: 24px;
  }

  .sol-related-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .sol-related-img {
    aspect-ratio: 1.8;
  }

  /* 服务支持页面 */
  .about-hero-banner {
    min-height: 260px;
  }

  .about-hero-banner h1 {
    font-size: 28px;
  }

  .about-layout {
    grid-template-columns: 1fr;
    padding-top: 20px;
    padding-bottom: 60px;
    gap: 16px;
  }

  .about-sidebar {
    position: static;
    padding: 16px;
    border-radius: 8px;
  }

  .about-sidebar h3 {
    font-size: 16px;
    margin-bottom: 12px;
    padding-bottom: 10px;
  }

  .about-sidebar nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }

  .about-sidebar nav a {
    padding: 8px 14px;
    border-bottom: 0;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    font-size: 13px;
    min-height: auto;
  }

  .about-sidebar nav a.active {
    background: #2c6fe8;
    color: #fff;
    border-color: #2c6fe8;
  }

  .about-content {
    padding: 20px;
    border-radius: 8px;
    min-height: auto;
  }

  .about-content h2 {
    font-size: 22px;
    margin-bottom: 20px;
  }

  /* 服务表单移动端适配 */
  .svc-form {
    grid-template-columns: 1fr;
  }

  .svc-form .full {
    grid-column: 1;
  }

  .svc-form-submit {
    grid-column: 1;
  }

  .svc-dl-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .svc-dl-btn {
    align-self: flex-end;
  }

  /* 新闻动态页面 */
  .news-hero {
    min-height: 260px;
  }

  .news-hero-content h1 {
    font-size: 28px;
  }

  .news-hero-content p {
    font-size: 14px;
  }

  .news-wrap {
    padding-top: 30px;
    padding-bottom: 60px;
    padding-inline: 20px;
  }

  .news-tabs {
    gap: 20px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 12px;
    margin-bottom: 24px;
  }

  .news-tabs::-webkit-scrollbar {
    display: none;
  }

  .news-tabs a {
    font-size: 14px;
    white-space: nowrap;
    padding-bottom: 12px;
  }

  .news-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .news-card-body {
    padding: 14px 16px 18px;
  }

  .news-card-body h3 {
    font-size: 15px;
  }

  /* 新闻详情页 */
  .news-detail-head {
    padding-top: 100px;
    padding-bottom: 40px;
    padding-inline: 20px;
  }

  .news-detail-head h1 {
    font-size: 28px;
  }

  .news-detail-head > p {
    font-size: 14px;
  }

  .news-detail-head > div {
    flex-wrap: wrap;
    gap: 10px;
    font-size: 11px;
  }

  .news-detail-cover {
    padding-inline: 20px;
  }

  .news-detail-cover img {
    border-radius: 8px;
  }

  .news-detail-layout {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 40px;
    padding-bottom: 60px;
    padding-inline: 20px;
  }

  .news-detail-layout aside {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    padding: 16px;
  }

  .news-detail-layout aside span {
    margin-bottom: 0;
    width: 100%;
  }

  .news-detail-layout aside a {
    padding: 6px 12px;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    font-size: 12px;
  }

  /* 关于我们页面 - 子页面 */
  .about-section {
    padding: 50px 0;
  }

  .about-section .section-shell {
    padding: 0 20px;
  }

  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-intro-visual {
    min-height: 240px;
    order: -1;
  }

  .about-intro-visual img {
    min-height: 240px;
  }

  .about-intro-content h2,
  .section-title {
    font-size: 24px;
  }

  .about-intro-content p {
    font-size: 14px;
  }

  .explore-banner {
    min-height: 280px;
    margin-top: 24px;
  }

  .explore-content {
    padding: 30px 24px;
  }

  .explore-content h3 {
    font-size: 24px;
  }

  .explore-content p {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .vision-row,
  .rd-grid,
  .business-row {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 28px;
  }

  .vision-card,
  .rd-card,
  .business-card {
    padding: 28px 20px;
  }

  .vision-icon {
    width: 48px;
    height: 48px;
  }

  .vision-card h3 {
    font-size: 18px;
  }

  .rd-value {
    font-size: 28px;
  }

  .business-card h3 {
    font-size: 18px;
  }

  .global-banner {
    grid-template-columns: 1fr;
    padding: 28px 20px;
    margin-top: 24px;
  }

  .global-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .global-number {
    font-size: 48px;
  }

  .global-label {
    font-size: 14px;
  }

  .global-text {
    margin-top: 20px;
  }

  .global-text p {
    font-size: 13px;
  }

  /* 分页移动端适配 */
  .pagination {
    gap: 6px;
  }

  .pagination-btn {
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    font-size: 13px;
  }

  .pagination-ellipsis {
    width: 36px;
    height: 36px;
    font-size: 13px;
  }
}

/* 超小屏幕适配 (320px - 375px) */
@media (max-width: 375px) {
  .shop-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .shop-card-media {
    aspect-ratio: 1.6;
  }

  .sol-grid {
    grid-template-columns: 1fr;
  }

  .method-grid {
    grid-template-columns: 1fr;
  }

  .method-grid > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .method-grid > div:last-child {
    border-bottom: 0;
  }

  .sol-detail-title {
    font-size: 22px;
  }

  .news-detail-head h1 {
    font-size: 24px;
  }
}

/* Contact typography tuned to the reference footer scale */
.footer-contact p.footer-contact-label {
  font-size: 13px !important;
  line-height: 1.45;
  color: #9299a2;
}

.footer-contact p.footer-contact-meta {
  font-size: 12px !important;
  line-height: 1.5;
}

.footer-contact p.footer-phone {
  font-size: 18px !important;
  line-height: 1.2;
  font-weight: 500;
  color: #2d3035;
  margin-bottom: 16px;
}

.footer-contact>p:last-child {
  font-size: 13px !important;
  color: #2d3035;
}

@media (max-width: 700px) {
  .footer-contact p.footer-contact-label {
    font-size: 13px !important;
  }

  .footer-contact p.footer-phone {
    font-size: 16px !important;
  }
}

/* Product center: Wonderful-style commerce catalog *//* One shared header across every route */
.site-header {
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: none;
  height: 72px;
  padding-inline: 28px;
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 3px 16px rgba(36, 34, 30, .08);
}

.site-header .brand strong,
.site-header .brand small,
.desktop-nav > a,
.desktop-nav > .nav-item-dropdown > a {
  color: #2b2b2b;
}

.desktop-nav > a::after,
.desktop-nav > .nav-item-dropdown > a::after {
  background: #3f5cf4;
}

.header-cta {
  min-height: 46px;
  padding-inline: 22px;
  border-radius: 999px;
  background: #3f5cf4;
  color: #fff;
}

.header-cta:hover {
  background: #3049d6;
}

@media (max-width: 900px) {
  .site-header {
    height: 56px;
    padding-inline: 20px;
  }

  .desktop-nav,
  .site-header .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }
}

.site-header.scrolled {
  top: 0;
  border-radius: 0;
}

/* Compact shared header */
.site-header,
.site-header.scrolled {
  height: 60px;
  padding-inline: 28px;
}

.site-header .brand img {
  width: 36px;
  height: 36px;
}

.site-header .brand strong {
  font-size: 16px;
}

.site-header .brand small {
  margin-top: 2px;
  font-size: 9px;
}

.desktop-nav > a,
.desktop-nav > .nav-item-dropdown > a {
  padding-inline: 18px;
  font-size: 14px;
}

.desktop-nav > a::after,
.desktop-nav > .nav-item-dropdown > a::after {
  bottom: 7px;
}

.header-cta {
  min-height: 40px;
  padding-inline: 20px;
  font-size: 13px;
}

@media (max-width: 900px) {

  .site-header,
  .site-header.scrolled {
    height: 52px;
    padding-inline: 16px;
  }

  .site-header .brand img {
    width: 34px;
    height: 34px;
  }
}

/* Homepage Swiper hero */

/* ===== 二级导航样式 ===== */

/* PC端下拉菜单容器 */
.nav-item-dropdown {
  position: static;
}

.nav-item-dropdown > a {
  position: relative;
  display: grid;
  place-items: center;
  padding: 0 20px;
  color: #5d6d7e;
  font-size: 14px;
  transition: color .2s;
}

.nav-item-dropdown > a:hover,
.nav-item-dropdown > a.active {
  color: var(--ink);
}

.nav-item-dropdown > a::after {
  content: "";
  position: absolute;
  bottom: 11px;
  left: 50%;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--blue);
  transition: .2s;
}

.nav-item-dropdown > a:hover::after,
.nav-item-dropdown > a.active::after {
  left: 32%;
  width: 36%;
}

/* 下拉面板 - 全屏宽度 */
.dropdown-panel {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  width: 100vw;
  padding: 32px 0;
  background: #fff;
  border-top: 1px solid var(--line);
  box-shadow: 0 20px 60px rgba(27, 51, 78, .15), 0 4px 16px rgba(27, 51, 78, .08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
  z-index: 999;
}

/* 鼠标悬停时显示 */
.nav-item-dropdown:hover .dropdown-panel {
  opacity: 1;
  visibility: visible;
  /* transform: translateY(0); */
}

/* 确保鼠标可以移动到面板上 */
.dropdown-panel::before {
  content: "";
  position: absolute;
  top: -30px;
  left: 0;
  right: 0;
  height: 30px;
}

.dropdown-inner {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* 下拉列 */
.dropdown-column {
  min-width: 160px;
}

.dropdown-title {
  margin: 0 0 16px;
  padding-bottom: 10px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 600;
  border-bottom: 2px solid #3f5cf4;
}

.dropdown-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.dropdown-list li {
  margin: 0;
}

.dropdown-list a {
  display: block;
  padding: 8px 0;
  color: #5d6d7e;
  font-size: 14px;
  transition: color .2s, padding-left .2s;
}

.dropdown-list a:hover {
  color: var(--blue);
  padding-left: 6px;
}

/* 移动端导航树 */
.mobile-nav-tree {
  margin-bottom: 4px;
}

.mobile-nav-parent {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  font-size: 22px;
  font-weight: 700;
  cursor: pointer;
}

.mobile-nav-parent .arrow {
  color: #9aabba;
  font-size: 18px;
  transition: transform .3s;
}

.mobile-nav-parent.active {
  color: var(--blue);
}

.mobile-nav-children {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
  background: rgba(244, 247, 251, .8);
  border-radius: 12px;
  margin-bottom: 8px;
}

.mobile-nav-tree.expanded .mobile-nav-children {
  max-height: 1000px;
}

.mobile-nav-tree.expanded .mobile-nav-parent .arrow {
  transform: rotate(90deg);
}

.mobile-nav-group {
  padding: 12px 16px;
}

.mobile-nav-group-title {
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 0 8px;
  color: var(--blue);
}

.mobile-nav-child {
  display: block;
  padding: 10px 0;
  color: #5d6d7e;
  font-size: 15px;
  font-weight: 400;
}

.mobile-nav-child:hover {
  color: var(--blue);
}