* {
  box-sizing: border-box;
}

:root {
  --primary-red: #AD0800;
  --bg-white: #FFFFFF;
  --page-width: 1443px;
  --page-gutter: 121px;
}

body {
  margin: 0;
  color: #181818;
  background: #f7f8fa;
  font-family: Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.header {
  background: var(--bg-white);
  position: sticky;
  top: 0;
  z-index: 1000;
  filter: drop-shadow(0px 0px 11px rgba(215, 215, 215, 0.329));
}

.header-wrapper {
  display: flex;
  flex-direction: column;
}

.header-top-bar {
  display: none;
}

.header-nav-bar {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 7px var(--page-gutter);
  display: flex;
  align-items: center;
  gap: 30px;
  width: 100%;
  background: var(--bg-white);
}

.logo {
  flex: 0 0 auto;
}

.logo img {
  height: 32px;
  width: auto;
  max-width: none;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 35px;
  margin-left: 100px;
  white-space: nowrap;
}

.nav-link {
  color: #000000;
  font-family: "PingFang SC", "PingFangSC-Regular", "Microsoft YaHei", sans-serif;
  font-size: 16px;
  font-weight: 400;
  padding: 8px 0;
  white-space: nowrap;
}

.nav-link.active,
.nav-link:hover {
  color: var(--primary-red);
  font-weight: 700;
}

.nav-link.contact {
  color: #000000;
  font-weight: 400;
}

.nav-link.contact:hover,
.nav-link.contact.active {
  color: var(--primary-red);
  font-weight: 700;
}

.search-container {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.search-box {
  display: flex;
  align-items: center;
  width: 454px;
  height: 38px;
  padding: 2px;
  gap: 0;
  overflow: hidden;
  background: linear-gradient(135deg, #ED6525 0%, #EA1D1D 24%, #B80D0D 100%);
  border-radius: 11px;
}

.search-inner {
  flex: 1;
  min-width: 0;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 6px;
  overflow: hidden;
  background: #fff;
  border-radius: 10px;
}

.search-input {
  width: 376px;
  flex-shrink: 0;
  height: 100%;
  margin: 0;
  padding: 0 15px;
  color: #000;
  background: #fff;
  border: 0;
  border-radius: 10px;
  outline: 0;
  font-size: 14px;
}

.search-input::placeholder {
  color: #9F9B9B;
}

.search-btn {
  flex: 1;
  height: 100%;
  padding: 0;
  color: #fff;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: "PingFang SC", "PingFangSC-Regular", sans-serif;
  font-size: 15px;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
}

.mobile-logo {
  display: none;
}

.landing-page {
  min-height: 100vh;
}

.landing-hero {
  color: #181818;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.96), rgba(255, 249, 248, 0.9)),
    linear-gradient(135deg, rgba(181, 18, 11, 0.08) 0 1px, transparent 1px 34px),
    linear-gradient(90deg, #fff 0%, #f8fafc 58%, #fff3f1 100%);
  border-bottom: 1px solid #edf0f4;
}

.landing-hero-inner {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 42px var(--page-gutter) 50px;
}

.landing-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  color: #6b7280;
  font-size: 14px;
}

.landing-breadcrumb a:hover {
  color: #b5120b;
}

.landing-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 10px;
  color: #9f1b13;
  background: #fff4f2;
  border: 1px solid #f1d4d0;
  border-radius: 6px;
  font-size: 13px;
}

.landing-hero h1 {
  max-width: 1200px;
  margin: 0;
  font-size: 42px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0;
}

.landing-hero p {
  max-width: 1200px;
  margin: 18px 0 0;
  color: #4b5563;
  font-size: 17px;
  line-height: 1.8;
}

.landing-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.landing-actions a {
  min-height: 42px;
  padding: 10px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #b5120b;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
}

.landing-actions a.secondary {
  color: #2f3742;
  background: #fff;
  border: 1px solid #d8dde5;
}

.landing-band {
  padding: 34px 0 54px;
}

.landing-main {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 var(--page-gutter);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 294px;
  gap: 26px;
  align-items: start;
}

.landing-content {
  display: grid;
  gap: 22px;
}

.landing-section,
.landing-side-links {
  background: #fff;
  border: 1px solid #e8ebf0;
  border-radius: 8px;
}

.landing-section {
  padding: 24px;
}

.landing-section-head {
  margin-bottom: 16px;
}

.landing-section-head h2 {
  margin: 0;
  color: #111;
  font-size: 22px;
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: 0;
}

.landing-section-head p {
  margin: 8px 0 0;
  color: #66717f;
  font-size: 15px;
  line-height: 1.7;
}

.intent-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.route-card {
  min-height: 132px;
  padding: 16px;
  display: grid;
  align-content: start;
  gap: 8px;
  background: #fff8f7;
  border: 1px solid #f0d4cf;
  border-radius: 8px;
}

.route-card:hover {
  border-color: #c6281d;
}

.route-card strong {
  color: #171717;
  font-size: 16px;
  line-height: 1.45;
}

.route-card span {
  color: #66717f;
  font-size: 14px;
  line-height: 1.6;
}

.route-card em {
  margin-top: auto;
  color: #b5120b;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
}

.intent-card {
  min-height: 88px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  background: #fafbfc;
  border: 1px solid #e7ebf1;
  border-radius: 8px;
}

.intent-card:hover {
  border-color: #c6281d;
}

.intent-card span {
  color: #171717;
  font-size: 16px;
  font-weight: 700;
}

.intent-card em {
  color: #778290;
  font-size: 13px;
  font-style: normal;
}

.landing-list,
.landing-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.landing-list li,
.landing-steps li {
  position: relative;
  padding: 11px 14px 11px 34px;
  color: #303946;
  background: #fafbfc;
  border: 1px solid #eef1f5;
  border-radius: 8px;
  font-size: 15px;
  line-height: 1.65;
}

.landing-list li::before,
.landing-steps li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 22px;
  width: 6px;
  height: 6px;
  background: #c6281d;
  border-radius: 50%;
}

.landing-course-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.landing-course-card,
.landing-expert-card,
.landing-topic-list a {
  border: 1px solid #e7ebf1;
  border-radius: 8px;
  background: #fff;
}

.landing-course-card {
  min-height: 172px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.landing-course-main h3 {
  margin: 0;
  color: #151515;
  font-size: 17px;
  line-height: 1.45;
  font-weight: 700;
  letter-spacing: 0;
}

.landing-course-main p {
  margin: 10px 0 0;
  color: #5e6977;
  font-size: 14px;
  line-height: 1.65;
}

.landing-card-meta {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #7a8592;
  font-size: 13px;
}

.landing-card-meta a,
.landing-card-meta span {
  padding: 5px 8px;
  background: #f5f6f8;
  border-radius: 6px;
}

.landing-course-path {
  background: #fffdfc;
  border-color: #ecd9d4;
}

.landing-path-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.landing-path-card {
  min-height: 142px;
  padding: 16px;
  display: grid;
  align-content: start;
  gap: 8px;
  background: #fff;
  border: 1px solid #eadfdb;
  border-radius: 8px;
}

.landing-path-card:hover {
  border-color: #c6281d;
}

.landing-path-card em {
  width: fit-content;
  padding: 4px 8px;
  color: #a53a32;
  background: #fff4f2;
  border-radius: 6px;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
}

.landing-path-card strong {
  color: #151515;
  font-size: 16px;
  line-height: 1.45;
}

.landing-path-card span {
  color: #66717f;
  font-size: 14px;
  line-height: 1.65;
}

.landing-expert-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.landing-expert-card {
  min-height: 126px;
  padding: 14px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.landing-expert-card img {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  object-fit: cover;
  border-radius: 50%;
  background: #f1f3f5;
}

.landing-expert-card span {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.landing-expert-card strong {
  color: #151515;
  font-size: 17px;
}

.landing-expert-card em {
  color: #c6281d;
  font-size: 13px;
  font-style: normal;
}

.landing-expert-card small {
  color: #66717f;
  font-size: 13px;
  line-height: 1.55;
}

.landing-topic-list {
  display: grid;
  gap: 12px;
}

.landing-topic-list a {
  padding: 15px 16px;
  display: grid;
  gap: 6px;
}

.landing-topic-list a:hover,
.landing-course-card:hover,
.landing-expert-card:hover {
  border-color: #c6281d;
}

.landing-topic-list strong {
  color: #151515;
  font-size: 16px;
}

.landing-topic-list span {
  color: #66717f;
  font-size: 14px;
  line-height: 1.65;
}

.landing-faq {
  display: grid;
  gap: 12px;
}

.landing-faq .landing-section-head {
  margin-bottom: 4px;
}

.landing-faq-item {
  padding: 15px 16px;
  background: #fafbfc;
  border: 1px solid #edf0f4;
  border-radius: 8px;
}

.landing-faq-item strong {
  color: #151515;
  font-size: 15px;
}

.landing-faq-item p {
  margin: 8px 0 0;
  color: #5e6977;
  font-size: 14px;
  line-height: 1.65;
}

.landing-sidebar {
  position: sticky;
  top: 82px;
  display: grid;
  gap: 16px;
}

.landing-side-links {
  padding: 18px;
}

.landing-side-title {
  color: #151515;
  font-size: 17px;
  font-weight: 700;
}

.landing-consult-box.wechat-card {
  width: 265px;
  margin: 0 auto;
  padding: 0;
  border: 0;
  border-radius: 16px;
  overflow: visible;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  position: relative;
  background: transparent;
}

.landing-consult-box .wechat-card-top {
  position: relative;
  height: 153px;
  padding: 18px 21px 0;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  background: #C62828;
}

.landing-consult-box .wechat-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 265px;
  height: 153px;
  display: block;
}

.landing-consult-box .wechat-title {
  position: relative;
  z-index: 1;
  margin: 0 0 8px;
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
}

.landing-consult-box .wechat-tip {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #fff;
  font-size: 14px;
  line-height: 1.4;
}

.landing-consult-box .wechat-qrcode-wrap {
  position: relative;
  z-index: 2;
  width: 190px;
  height: 189px;
  margin: -60px auto 0;
}

.landing-consult-box .wechat-qrcode-img {
  display: block;
  width: 190px;
  height: 189px;
  border-radius: 10px;
  object-fit: cover;
}

.landing-consult-box .wechat-card-bottom {
  padding: 15px 21px 20px;
  border-radius: 0 0 16px 16px;
  background: #fff;
  text-align: center;
}

.landing-consult-box .wechat-note {
  margin: 0;
  color: #131313;
  font-size: 14px;
  line-height: 1.5;
  white-space: nowrap;
}

.landing-side-links {
  display: grid;
  gap: 10px;
}

.landing-side-links a {
  padding: 10px 12px;
  color: #354052;
  background: #f7f8fa;
  border-radius: 6px;
  font-size: 14px;
}

.landing-side-links a:hover {
  color: #b5120b;
}

.landing-hub-main {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 var(--page-gutter);
  display: grid;
  gap: 22px;
}

.landing-hub-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 18px;
}

.landing-hub-nav a {
  min-height: 36px;
  padding: 8px 12px;
  display: inline-flex;
  align-items: center;
  color: #354052;
  background: #f7f8fa;
  border: 1px solid #e4e8ee;
  border-radius: 6px;
  font-size: 14px;
  line-height: 1.4;
}

.landing-hub-nav a:hover {
  color: #b5120b;
  border-color: #e7c4be;
  background: #fff8f7;
}

.landing-hub-groups {
  display: grid;
  gap: 22px;
}

.landing-hub-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.landing-hub-card {
  min-height: 156px;
  padding: 16px;
  display: grid;
  align-content: start;
  gap: 9px;
  background: #fff;
  border: 1px solid #e7ebf1;
  border-radius: 8px;
}

.landing-hub-card:hover {
  border-color: #c6281d;
}

.landing-hub-card strong {
  color: #151515;
  font-size: 17px;
  line-height: 1.45;
  font-weight: 700;
}

.landing-hub-card span {
  color: #66717f;
  font-size: 14px;
  line-height: 1.65;
}

.landing-hub-card em {
  margin-top: auto;
  color: #5f6b7a;
  font-size: 12px;
  line-height: 1.55;
  font-style: normal;
}

.footer {
  background: #000;
  padding: 50px 0 30px;
  margin-top: 40px;
}

.footer-content {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 var(--page-gutter);
}

.footer-intro {
  margin-bottom: 15px;
}

.footer-intro p {
  margin: 0;
  font-size: 14px;
  color: #7d7d7d;
  line-height: 1.8;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: #333;
  margin-bottom: 20px;
}

.footer-section-block {
  margin-bottom: 20px;
}

.footer-section-title {
  margin: 0 0 12px;
  color: #908f8f;
  font-size: 14px;
  font-weight: 700;
}

.footer-tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

.footer-tag {
  margin-right: 30px;
  margin-bottom: 8px;
  color: #908f8f;
  font-size: 14px;
  cursor: pointer;
  transition: color 0.2s ease;
}

.footer-tag:hover {
  color: #fff;
}

.footer-desc {
  margin: 0 0 8px;
  color: #908f8f;
  font-size: 13px;
  line-height: 1.8;
}

.footer-bottom {
  max-width: var(--page-width);
  margin: 0 auto;
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 23px;
}

.footer-bottom p {
  margin: 0;
  color: #7d7d7d;
  font-size: 14px;
}

.footer-copyright,
.footer-beian {
  text-align: left;
}

.footer-beian {
  white-space: nowrap;
}

.beian-icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  vertical-align: middle;
  margin: 0 4px;
}

.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
}

.modal-overlay:target {
  display: flex;
}

.modal-mask {
  position: absolute;
  inset: 0;
}

.modal-box {
  position: relative;
  z-index: 1;
  width: 265px;
  border-radius: 16px;
  overflow: visible;
  background: #fff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  font-size: 12px;
  line-height: 1;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.5);
}

.modal-top {
  position: relative;
  height: 153px;
  padding: 21px 21px 0;
  overflow: hidden;
  background: #C62828;
  border-radius: 16px 16px 0 0;
}

.modal-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 265px;
  height: 153px;
  display: block;
}

.modal-title {
  position: relative;
  z-index: 1;
  margin-bottom: 8px;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 20px;
  font-weight: 400;
}

.modal-tip {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #fff;
  font-family: "PingFang SC", "PingFangSC-Regular", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}

.modal-qrcode-wrap {
  position: relative;
  z-index: 2;
  width: 190px;
  height: 189px;
  margin: -60px auto 0;
}

.modal-qrcode-img {
  width: 190px;
  height: 189px;
  display: block;
  object-fit: cover;
  border-radius: 10px;
}

.modal-bottom {
  padding: 15px 21px 20px;
  text-align: center;
  background: #fff;
  border-radius: 0 0 16px 16px;
}

.modal-note {
  margin: 0;
  color: #131313;
  font-family: "PingFang SC", "PingFangSC-Regular", sans-serif;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
}

@media (min-width: 769px) and (max-width: 1420px) {
  :root {
    --page-gutter: 48px;
  }

  .header-nav-bar {
    padding-right: var(--page-gutter);
    padding-left: var(--page-gutter);
    gap: 24px;
  }

  .nav-menu {
    gap: 24px;
    margin-left: 40px;
  }

  .pc-search {
    min-width: 0;
    flex: 0 1 454px;
  }

  .pc-search .search-box {
    width: 454px;
    min-width: 0;
  }

  .pc-search .search-input {
    width: 376px;
    min-width: 0;
  }
}

@media (min-width: 769px) and (max-width: 1320px) {
  :root {
    --page-gutter: 32px;
  }

  .header-nav-bar {
    padding-right: var(--page-gutter);
    padding-left: var(--page-gutter);
  }

  .nav-menu {
    gap: 20px;
    margin-left: 28px;
  }

  .pc-search {
    flex-basis: 360px;
  }

  .pc-search .search-box {
    width: 360px;
  }

  .pc-search .search-input {
    width: auto;
    flex: 1;
  }
}

@media (max-width: 980px) {
  :root {
    --page-gutter: 24px;
  }

  .header-nav-bar {
    padding-right: var(--page-gutter);
    padding-left: var(--page-gutter);
    gap: 20px;
  }

  .nav-menu {
    gap: 22px;
    margin-left: 24px;
  }

  .pc-search {
    display: none;
  }
}

@media (max-width: 760px) {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 0;
    margin: 0;
    box-shadow: none;
  }

  .header-wrapper {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
  }

  .header-top-bar {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 8px 10px;
    background: #fff;
  }

  .search-container {
    display: flex;
    flex: 1;
    width: 100%;
  }

  .search-box {
    width: 100%;
    height: 44px;
    display: flex;
    align-items: center;
    padding: 2px;
    gap: 0;
    overflow: hidden;
    background: linear-gradient(135deg, #b80d0d 0%, #ea1d1d 85%, #ed6525 100%);
    border-radius: 13px;
  }

  .search-inner {
    flex: 1;
    min-width: 0;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 6px;
    overflow: hidden;
    padding: 0 8px;
    background: #fff;
    border-radius: 11px;
  }

  .mobile-logo {
    display: block;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    border-radius: 4px;
    object-fit: cover;
  }

  .search-input {
    flex: 1;
    min-width: 0;
    width: auto;
    height: 100%;
    padding: 0;
    color: #000;
    background: transparent;
    border: 0;
    outline: 0;
    font-size: 16px;
  }

  .search-input::placeholder {
    color: #c2bfbf;
    font-size: 16px;
  }

  .search-btn {
    flex: 0 0 68px;
    height: 100%;
    padding: 0;
    color: #fff;
    background: transparent;
    font-size: 13px;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
  }

  .pc-search {
    display: none;
  }

  .header-nav-bar {
    min-height: auto;
    max-width: 100%;
    width: 100%;
    margin: 0;
    padding: 0 13px;
    gap: 0;
    justify-content: flex-start;
  }

  .logo {
    display: none;
  }

  .nav-menu {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-shrink: 0;
    justify-content: space-between;
    gap: 0;
    margin-left: 0;
    padding: 0;
    overflow-x: auto;
    scrollbar-width: none;
    box-shadow: none;
  }

  .nav-menu::-webkit-scrollbar {
    display: none;
  }

  .nav-link {
    flex: 0 0 auto;
    margin-right: 0;
    padding: 10px 0;
    color: #000;
    font-size: 15px;
    font-weight: 400;
    white-space: nowrap;
  }

  .nav-link.active,
  .nav-link:hover {
    color: var(--primary-red);
    font-weight: 700;
  }

  .landing-page {
    margin-top: 92px;
  }
}

@media (max-width: 360px) {
  .nav-menu {
    justify-content: flex-start;
    gap: 0;
  }

  .nav-link {
    margin-right: 18px;
  }
}

@media (max-width: 900px) {
  .landing-hero-inner {
    padding: 28px 16px 36px;
  }

  .landing-hero h1 {
    font-size: 30px;
  }

  .landing-hero p {
    font-size: 16px;
  }

  .landing-main {
    padding: 0 16px;
    grid-template-columns: 1fr;
  }

  .landing-hub-main {
    padding: 0 16px;
  }

  .landing-sidebar {
    position: static;
  }

  .intent-grid,
  .route-grid,
  .landing-course-grid,
  .landing-path-grid,
  .landing-expert-grid {
    grid-template-columns: 1fr;
  }

  .landing-section {
    padding: 18px;
  }

  .landing-hub-nav {
    padding: 14px;
  }

  .landing-hub-nav a {
    flex: 1 1 calc(50% - 10px);
    justify-content: center;
    text-align: center;
  }

  .landing-hub-card-grid {
    grid-template-columns: 1fr;
  }

  .footer {
    margin-top: 30px;
    padding: 30px 0 0;
  }

  .footer-content {
    padding-left: 13px;
    padding-right: 13px;
  }

  .footer-section-title {
    margin-bottom: 10px;
    font-size: 13px;
  }

  .footer-tag {
    width: auto;
    margin-right: 18px;
    margin-bottom: 10px;
    font-size: 13px;
  }

  .footer-tags-hot .footer-tag {
    width: auto;
  }

  .footer-intro p,
  .footer-desc {
    font-size: 13px;
  }

  .footer-section-block {
    margin-bottom: 16px;
  }

  .footer-bottom {
    padding-top: 10px;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .footer-divider {
    margin-bottom: 12px;
  }

  .footer-bottom p {
    margin-bottom: 4px;
    text-align: center;
    font-size: 13px;
  }

  .footer-copyright,
  .footer-beian {
    text-align: center;
    white-space: normal;
  }

  .beian-icon {
    margin: 0 2px;
  }
}

@media (max-width: 760px) {
  .landing-hero-inner {
    padding-right: 13px;
    padding-left: 13px;
  }

  .landing-main {
    padding-right: 13px;
    padding-left: 13px;
  }
}
