:root {
  --mb-navy: #0b2344;
  --mb-navy-2: #102c53;
  --mb-blue: #244f88;
  --mb-gold: #c6a03a;
  --mb-gold-soft: #efe5c8;
  --mb-paper: #f7f5ef;
  --mb-ink: #0c2546;
  --mb-text: #505967;
  --mb-line: #ddd4bf;
  --mb-white: #fff;
}

a,
a:link,
a:visited,
a:hover,
a:focus,
a:active,
.mb-nav a,
.mb-nav a:hover,
.mb-nav a:focus,
.mb-nav a:active {
  text-decoration: none !important;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #e8ebef;
  color: var(--mb-text);
  font-family: "Noto Serif SC", "Songti SC", "STSong", "PingFang SC", "Microsoft YaHei", serif;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
textarea {
  letter-spacing: 0;
  font-family: "Noto Serif SC", "Songti SC", "STSong", "PingFang SC", "Microsoft YaHei", serif;
}

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

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

button {
  font: inherit;
}

.ph,
.ph::before {
  font-family: "Phosphor" !important;
}

.mb-site,
.mb-site a,
.mb-site button,
.mb-site input,
.mb-site textarea,
.mb-bottom-bar,
.mb-bottom-bar a {
  font-family: "Noto Serif SC", "Songti SC", "STSong", "PingFang SC", "Microsoft YaHei", serif;
}

.mb-site {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  overflow: hidden;
  background: var(--mb-white);
  box-shadow: 0 0 36px rgba(11, 35, 68, 0.12);
}

.mb-topbar {
  position: sticky;
  z-index: 50;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  padding: 10px 14px;
  border-bottom: 1px solid #e8ebef;
  background: rgba(255, 255, 255, 0.98);
}

.mb-brand {
  min-width: 0;
}

.mb-brand img {
  width: min(76vw, 320px);
  height: auto;
}

.mb-menu-button {
  display: flex;
  flex: 0 0 43px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1px;
  width: 43px;
  height: 45px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--mb-navy);
  font-size: 9px;
}

.mb-menu-button i {
  font-size: 23px;
}

.mb-nav {
  position: fixed;
  z-index: 49;
  top: 68px;
  left: 12px;
  right: 12px;
  display: none;
  grid-template-columns: 1fr 1fr;
  max-width: 536px;
  margin: auto;
  padding: 7px 16px 12px;
  border-top: 3px solid var(--mb-gold);
  background: var(--mb-white);
  box-shadow: 0 18px 44px rgba(5, 24, 48, 0.24);
}

.mb-nav.is-open {
  display: grid;
}

.mb-nav-backdrop {
  position: fixed;
  z-index: 48;
  top: 68px;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: rgba(5, 24, 48, 0.12);
}

.mb-nav-backdrop.is-open {
  display: block;
}

.mb-nav a {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 50px;
  border-bottom: 1px solid #edf0f4;
  color: var(--mb-ink);
  font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 14px;
}

.mb-nav i {
  color: var(--mb-gold);
  font-size: 18px;
}

.mb-hero {
  position: relative;
  min-height: calc(100svh - 68px);
  padding: 52px 24px 58px;
  overflow: hidden;
  border-top: 6px solid var(--mb-gold);
  background: var(--mb-navy);
  color: var(--mb-white);
}

.mb-hero::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.mb-hero::after {
  right: -175px;
  bottom: 76px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(198, 160, 58, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 54px rgba(198, 160, 58, 0.025), 0 0 0 108px rgba(198, 160, 58, 0.018);
}

.mb-hero > * {
  position: relative;
  z-index: 1;
}

.mb-hero-mark {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin-bottom: 38px;
  border: 2px solid var(--mb-gold);
  color: var(--mb-gold);
  font-size: 10px;
  line-height: 1.35;
  text-align: center;
}

.mb-hero-mark::before {
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(198, 160, 58, 0.64);
  content: "";
}

.mb-hero-mark strong {
  display: block;
  color: var(--mb-gold);
  font-family: Georgia, serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.1;
}

.mb-eyebrow {
  max-width: 300px;
  margin: 0 0 18px;
  color: var(--mb-gold);
  font-family: Georgia, serif;
  font-size: 10px;
  line-height: 1.7;
  letter-spacing: 3px;
}

.mb-hero h1 {
  margin: 0;
  color: var(--mb-white);
  font-size: clamp(34px, 10vw, 48px);
  font-weight: 600;
  line-height: 1.34;
}

.mb-gold-line {
  width: 54px;
  height: 3px;
  margin: 32px 0;
  background: var(--mb-gold);
}

.mb-hero-motto {
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.6;
}

.mb-hero-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
  line-height: 1.8;
}

.mb-hero-license {
  margin: 8px 0 0;
  color: var(--mb-gold);
  font-size: 11px;
  line-height: 1.7;
}

.mb-hero-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 58px;
  border-top: 1px solid rgba(198, 160, 58, 0.3);
  border-left: 1px solid rgba(198, 160, 58, 0.3);
}

.mb-hero-services a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 9px;
  min-height: 104px;
  padding: 12px 4px;
  border-right: 1px solid rgba(198, 160, 58, 0.3);
  border-bottom: 1px solid rgba(198, 160, 58, 0.3);
  color: var(--mb-gold);
  text-align: center;
  font-size: 11px;
  line-height: 1.35;
}

.mb-hero-services i {
  color: rgba(255, 255, 255, 0.82);
  font-size: 25px;
}

.mb-section {
  padding: 62px 22px;
}

.mb-overview,
.mb-qualifications,
.mb-news {
  background: var(--mb-white);
}

.mb-services,
.mb-process {
  background: var(--mb-paper);
}

.mb-section-head {
  position: relative;
  margin-bottom: 28px;
}

.mb-section-head > p,
.mb-team-title > p {
  margin: 0 0 14px;
  color: var(--mb-gold);
  font-family: Georgia, serif;
  font-size: 10px;
  letter-spacing: 4px;
}

.mb-section-head h2,
.mb-team-title h2 {
  margin: 0;
  color: var(--mb-ink);
  font-size: 29px;
  font-weight: 600;
  line-height: 1.45;
}

.mb-section-head h2 em,
.mb-team-title h2 em {
  color: var(--mb-gold);
  font-style: normal;
}

.mb-lead {
  margin: 0;
  color: #343c48;
  font-size: 15px;
  line-height: 2.05;
  text-align: justify;
}

.mb-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 32px;
  border-top: 1px solid var(--mb-line);
  border-left: 1px solid var(--mb-line);
}

.mb-stats div {
  min-height: 116px;
  padding: 23px 8px 16px;
  border-right: 1px solid var(--mb-line);
  border-bottom: 1px solid var(--mb-line);
  text-align: center;
}

.mb-stats strong {
  display: block;
  color: var(--mb-gold);
  font-family: Georgia, serif;
  font-size: 36px;
  font-weight: 400;
}

.mb-stats small {
  margin-left: 2px;
  color: var(--mb-ink);
  font-family: inherit;
  font-size: 12px;
}

.mb-stats span {
  display: block;
  margin-top: 5px;
  color: #7d8490;
  font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 11px;
}

.mb-trust {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.mb-trust article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 13px;
  padding: 20px 17px;
  border-left: 4px solid var(--mb-gold);
  background: #f5edda;
}

.mb-trust i {
  color: var(--mb-gold);
  font-size: 30px;
}

.mb-trust h3 {
  margin: 0 0 7px;
  color: var(--mb-ink);
  font-size: 16px;
}

.mb-trust p {
  margin: 0;
  font-size: 12px;
  line-height: 1.8;
}

.mb-text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 27px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--mb-gold);
  color: var(--mb-ink);
  font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 13px;
  font-weight: 600;
}

.mb-text-link i {
  color: var(--mb-gold);
}

.mb-service-grid {
  display: grid;
  gap: 12px;
}

.mb-service-grid article {
  position: relative;
  min-height: 175px;
  padding: 22px 19px;
  overflow: hidden;
  border: 1px solid var(--mb-line);
  border-left: 4px solid var(--mb-gold);
  background: var(--mb-white);
}

.mb-service-grid article > span {
  position: absolute;
  top: 4px;
  right: 12px;
  color: #f0ebdf;
  font-family: Georgia, serif;
  font-size: 49px;
}

.mb-service-grid i {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--mb-gold);
  font-size: 28px;
}

.mb-service-grid h3 {
  position: relative;
  margin: 0 0 9px;
  color: var(--mb-ink);
  font-size: 18px;
}

.mb-service-grid p {
  position: relative;
  margin: 0;
  font-size: 13px;
  line-height: 1.8;
}

.mb-promise {
  margin-top: 20px;
  padding: 23px 20px;
  background: var(--mb-navy);
  color: rgba(255, 255, 255, 0.76);
}

.mb-promise small {
  color: var(--mb-gold);
  font-size: 11px;
}

.mb-promise p {
  margin: 9px 0 0;
  font-size: 13px;
  line-height: 1.9;
}

.mb-qualification-list {
  border-top: 1px solid var(--mb-line);
}

.mb-qualification-list article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  padding: 20px 0;
  border-bottom: 1px solid var(--mb-line);
}

.mb-qualification-list i {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  background: var(--mb-navy);
  color: var(--mb-gold);
  font-size: 25px;
}

.mb-qualification-list article:nth-child(2n) i {
  background: var(--mb-gold);
  color: var(--mb-navy);
}

.mb-qualification-list h3 {
  margin: 0 0 6px;
  color: var(--mb-ink);
  font-size: 16px;
  line-height: 1.55;
}

.mb-qualification-list p {
  margin: 0;
  font-size: 12px;
  line-height: 1.75;
}

.mb-quality {
  margin-top: 28px;
  padding: 22px;
  border: 1px solid var(--mb-line);
  background: #f5edda;
}

.mb-quality strong {
  display: block;
  margin-bottom: 8px;
  color: var(--mb-ink);
  font-size: 15px;
}

.mb-quality p {
  margin: 0;
  font-size: 13px;
  line-height: 1.9;
}

.mb-process-track {
  display: flex;
  gap: 0;
  padding: 5px 0 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--mb-gold) #ddd5c3;
  scrollbar-width: auto;
  -webkit-overflow-scrolling: touch;
}

.mb-process-track::-webkit-scrollbar {
  height: 7px;
}

.mb-process-track::-webkit-scrollbar-track {
  border-radius: 0;
  background: #ddd5c3;
}

.mb-process-track::-webkit-scrollbar-thumb {
  border: 1px solid #aa8425;
  border-radius: 0;
  background: var(--mb-gold);
}

.mb-process-track article {
  position: relative;
  flex: 0 0 126px;
  scroll-snap-align: start;
  text-align: center;
}

.mb-process-track article::after {
  position: absolute;
  z-index: 0;
  top: 31px;
  left: 86px;
  width: 80px;
  height: 1px;
  background: var(--mb-line);
  content: "";
}

.mb-process-track article:last-child::after {
  display: none;
}

.mb-process-track b {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--mb-navy);
  color: var(--mb-gold);
  font-family: Georgia, serif;
  font-size: 19px;
}

.mb-process-track .is-gold b {
  background: var(--mb-gold);
  color: var(--mb-navy);
}

.mb-process-track h3 {
  margin: 0 0 7px;
  color: var(--mb-ink);
  font-size: 14px;
}

.mb-process-track p {
  margin: 0;
  font-size: 11px;
  line-height: 1.7;
}

.mb-team-title {
  margin-top: 52px;
}

.mb-team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 25px;
}

.mb-team-grid article {
  min-height: 224px;
  padding: 22px 12px;
  border: 1px solid var(--mb-line);
  background: var(--mb-white);
  text-align: center;
}

.mb-team-grid i {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: var(--mb-navy);
  color: var(--mb-gold);
  font-size: 26px;
}

.mb-team-grid article:nth-child(2) i {
  background: var(--mb-gold);
  color: var(--mb-navy);
}

.mb-team-grid article:nth-child(3) i {
  background: var(--mb-blue);
}

.mb-team-grid article:nth-child(4) i {
  background: #355e3b;
}

.mb-team-grid article:nth-child(5) i {
  background: #60365e;
}

.mb-team-grid article:nth-child(6) i {
  background: #226464;
}

.mb-team-grid small {
  color: var(--mb-gold);
  font-family: Georgia, serif;
  font-size: 9px;
  letter-spacing: 2px;
}

.mb-team-grid h3 {
  margin: 9px 0;
  color: var(--mb-ink);
  font-size: 15px;
}

.mb-team-grid p {
  margin: 0;
  font-size: 11px;
  line-height: 1.75;
}

.mb-team-grid .mb-team-multi {
  grid-column: 1 / -1;
  min-height: 205px;
}

.mb-team-grid .mb-team-multi p {
  font-size: 12px;
  line-height: 1.9;
}

.mb-news-list {
  border-top: 1px solid var(--mb-line);
}

.mb-news-list a {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 20px;
  gap: 12px;
  align-items: center;
  padding: 17px 0;
  border-bottom: 1px solid var(--mb-line);
}

.mb-news-list > a > i:first-child {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--mb-line);
  color: var(--mb-gold);
  font-size: 20px;
}

.mb-news-list span {
  min-width: 0;
}

.mb-news-list b {
  display: block;
  overflow: hidden;
  color: var(--mb-ink);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.mb-news-list small {
  display: block;
  margin-top: 4px;
  color: #9298a1;
  font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 10px;
}

.mb-news-list > a > i:last-child {
  color: #a5aab1;
  font-size: 16px;
}

.mb-contact {
  padding: 76px 22px 118px;
  border-top: 7px solid var(--mb-gold);
  background: var(--mb-navy);
  color: var(--mb-white);
  text-align: center;
}

.mb-shared-contact-footer {
  width: 100%;
  margin: 0;
}

.contact-page-map a {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 22px;
  gap: 12px;
  align-items: center;
  min-height: 84px;
  padding: 17px 18px;
  border: 1px solid var(--mb-line);
  background: var(--mb-paper);
  color: var(--mb-ink);
}

.contact-wechat {
  margin: 0 0 16px;
  padding: 24px 18px;
  border: 1px solid var(--mb-line);
  border-top: 4px solid var(--mb-gold);
  background: var(--mb-white);
  text-align: center;
}

.contact-wechat-copy > i {
  display: grid;
  width: 48px;
  height: 48px;
  margin: 0 auto 13px;
  place-items: center;
  background: var(--mb-navy);
  color: var(--mb-gold);
  font-size: 26px;
}

.contact-wechat-copy small {
  color: var(--mb-gold);
  font: 9px Georgia, serif;
  letter-spacing: 2px;
}

.contact-wechat-copy h4 {
  margin: 7px 0 8px;
  color: var(--mb-ink);
  font-size: 20px;
}

.contact-wechat-copy p {
  margin: 0;
  color: #747d89;
  font-size: 11px;
  line-height: 1.8;
}

.contact-wechat > img {
  display: block;
  width: min(100%, 280px);
  height: auto;
  margin: 20px auto 0;
}

.contact-page-map a > i:first-child {
  color: var(--mb-gold);
  font-size: 30px;
}

.contact-page-map a > i:last-child {
  color: var(--mb-gold);
  font-size: 18px;
}

.contact-page-map a span,
.contact-page-map a strong,
.contact-page-map a small {
  display: block;
}

.contact-page-map a strong {
  margin-bottom: 4px;
  font-size: 15px;
}

.contact-page-map a small {
  color: #7e8793;
  font-size: 11px;
}

.mb-contact-kicker {
  margin: 0 0 22px;
  color: var(--mb-gold);
  font-family: Georgia, serif;
  font-size: 10px;
  letter-spacing: 5px;
}

.mb-contact h2 {
  margin: 0;
  color: var(--mb-white);
  font-size: 34px;
}

.mb-contact-sub {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
}

.mb-contact-line {
  width: 44px;
  height: 2px;
  margin: 25px auto;
  background: var(--mb-gold);
}

.mb-contact > strong {
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  font-weight: 400;
}

.mb-contact-details {
  margin-top: 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  text-align: left;
}

.mb-contact-details article {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  align-items: center;
  padding: 18px 2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.mb-contact-details i {
  color: var(--mb-gold);
  font-size: 23px;
  text-align: center;
}

.mb-contact-details b {
  display: block;
  margin-bottom: 4px;
  color: var(--mb-gold);
  font-size: 11px;
  font-weight: 500;
}

.mb-contact-details p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 12px;
  line-height: 1.75;
}

.mb-strength-panel {
  margin-top: 34px;
  padding: 25px 18px 20px;
  border: 1px solid rgba(198, 160, 58, 0.48);
  text-align: left;
}

.mb-strength-heading {
  padding-bottom: 17px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.mb-strength-heading span {
  color: var(--mb-gold);
  font-family: Georgia, serif;
  font-size: 8px;
  letter-spacing: 3px;
}

.mb-strength-heading h3 {
  margin: 7px 0 0;
  color: var(--mb-white);
  font-size: 21px;
  font-weight: 500;
}

.mb-strength-heading h2 {
  margin: 7px 0 0;
  color: var(--mb-white);
  font-size: 21px;
  font-weight: 500;
}

.mb-hero-strength {
  margin-top: 52px;
  background: rgba(8, 29, 57, 0.34);
}

.mb-hero-strength .mb-strength-heading h2 {
  margin: 7px 0 0;
  color: var(--mb-white);
  font-size: 21px;
  line-height: 1.4;
}

.mb-strength-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 7px;
}

.mb-strength-stats div {
  padding: 17px 9px 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

.mb-strength-stats div:nth-child(2n) {
  border-right: 0;
}

.mb-strength-stats div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.mb-strength-stats strong {
  display: block;
  color: var(--mb-gold);
  font-family: Georgia, serif;
  font-size: 28px;
  font-weight: 400;
}

.mb-strength-stats small {
  margin-left: 2px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
}

.mb-strength-stats span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.54);
  font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 9px;
}

.mb-strength-panel > p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 15px 0 0;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.76);
  font-size: 11px;
  text-align: center;
}

.mb-strength-panel > p i {
  color: var(--mb-gold);
  font-size: 18px;
}

.mb-contact-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 24px;
}

.mb-contact-actions a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: var(--mb-white);
  font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 12px;
}

.mb-contact-actions a:first-child {
  border-color: var(--mb-gold);
  background: var(--mb-gold);
  color: var(--mb-navy);
  font-weight: 700;
}

.mb-copyright {
  margin: 38px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.35);
  font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 9px;
}

.mb-company-record {
  display: grid;
  gap: 6px;
  margin-top: 38px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.48);
  font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 10px;
  line-height: 1.65;
  text-align: center;
}

.mb-company-record strong {
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
}

.mb-company-record a {
  color: var(--mb-gold);
}

.mb-bottom-bar {
  position: fixed;
  z-index: 60;
  left: 50%;
  right: auto;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(100%, 560px);
  padding-bottom: env(safe-area-inset-bottom);
  transform: translateX(-50%);
  background: var(--mb-white);
  box-shadow: 0 -5px 22px rgba(5, 24, 48, 0.18);
}

.mb-bottom-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  min-height: 60px;
  color: var(--mb-navy);
  font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 10px;
}

.mb-bottom-bar i {
  font-size: 20px;
}

.mb-bottom-bar .is-primary {
  background: var(--mb-gold);
  color: var(--mb-navy);
  font-weight: 700;
}

.mb-message-page {
  min-height: 100vh;
  padding-bottom: 60px;
}

.mb-simple-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  padding: 10px 14px;
  border-bottom: 1px solid #e8ebef;
  background: var(--mb-white);
}

.mb-simple-head > a:first-child {
  min-width: 0;
}

.mb-simple-head img {
  width: min(74vw, 310px);
}

.mb-simple-head > a:last-child {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 2px;
  color: var(--mb-navy);
  font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 9px;
}

.mb-simple-head i {
  font-size: 20px;
}

.mb-message-hero {
  padding: 58px 22px 52px;
  border-top: 5px solid var(--mb-gold);
  background: var(--mb-navy);
  color: var(--mb-white);
}

.mb-message-hero p {
  margin: 0 0 18px;
  color: var(--mb-gold);
  font-family: Georgia, serif;
  font-size: 10px;
  letter-spacing: 4px;
}

.mb-message-hero h1 {
  margin: 0 0 12px;
  color: var(--mb-white);
  font-size: 34px;
  font-weight: 600;
}

.mb-message-hero span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.8;
}

.mb-message-content {
  padding: 32px 22px 56px;
}

.mb-message-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 28px;
}

.mb-message-contact article {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding: 16px 12px;
  border: 1px solid var(--mb-line);
}

.mb-message-contact i {
  color: var(--mb-gold);
  font-size: 22px;
}

.mb-message-contact b,
.mb-message-contact a,
.mb-message-contact span {
  display: block;
}

.mb-message-contact b {
  margin-bottom: 5px;
  color: var(--mb-ink);
  font-size: 12px;
}

.mb-message-contact a,
.mb-message-contact span {
  color: #6a7280;
  font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 10px;
  line-height: 1.5;
}

.mb-message-form {
  display: grid;
  gap: 18px;
}

.mb-message-form label span {
  display: block;
  margin-bottom: 8px;
  color: var(--mb-ink);
  font-size: 13px;
  font-weight: 600;
}

.mb-message-form input {
  width: 100%;
  height: 50px;
  padding: 0 14px;
  border: 1px solid var(--mb-line);
  border-radius: 0;
  outline: 0;
  background: var(--mb-white);
  color: var(--mb-ink);
  font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 14px;
}

.mb-message-form input:focus {
  border-color: var(--mb-gold);
  box-shadow: 0 0 0 2px rgba(198, 160, 58, 0.12);
}

.mb-message-form button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 52px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: var(--mb-gold);
  color: var(--mb-navy);
  font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.mb-message-form button i {
  font-size: 19px;
}

.mb-message-privacy {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 18px 0 0;
  color: #9298a1;
  font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 10px;
}

.mb-message-privacy i {
  color: var(--mb-gold);
  font-size: 15px;
}

/* Shared brochure shell for mobile category and article templates */
body:has(.mb-subpage-topbar) {
  padding-bottom: 60px;
  background: var(--mb-white);
}

.mb-subpage-topbar {
  width: 100%;
  max-width: none;
}

body:has(.mb-subpage-topbar) > .banner.subpage-banner {
  height: 118px !important;
  margin: 0 !important;
  border-top: 5px solid var(--mb-gold);
  background: var(--mb-navy) !important;
}

body:has(.mb-subpage-topbar) > .banner.subpage-banner .box {
  height: 118px !important;
  opacity: 0.22;
  background-position: center !important;
  background-size: cover !important;
}

body:has(.mb-subpage-topbar) > .crumbs {
  display: none !important;
}

body:has(.mb-subpage-topbar) > .crumbs .container {
  width: 100% !important;
  padding: 0 !important;
}

body:has(.mb-subpage-topbar) > .crumbs .breadcrumb {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: var(--mb-ink);
  font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 12px;
}

body:has(.mb-subpage-topbar) > .crumbs .breadcrumb a {
  color: var(--mb-ink) !important;
}

body:has(.mb-subpage-topbar) > .neirong {
  margin-top: 0 !important;
  padding-bottom: 44px;
  background: var(--mb-white);
}

body:has(.mb-subpage-topbar) .container {
  max-width: 100%;
}

@media (min-width: 430px) {
  .mb-service-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 370px) {
  .mb-hero {
    padding-right: 18px;
    padding-left: 18px;
  }

  .mb-hero h1 {
    font-size: 33px;
  }

  .mb-hero-services a {
    font-size: 10px;
  }

  .mb-section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .mb-section-head h2,
  .mb-team-title h2 {
    font-size: 26px;
  }

  .mb-contact-grid {
    grid-template-columns: 1fr;
  }

  .mb-contact-grid article {
    min-height: 0;
  }
}
