/* 万基官网首页 */
:root {
  --color-primary: #1e4a7a;
  --color-brand: #6c8d9e;
  --color-header-title: #3a4f5a;
  --color-accent: rgb(202, 121, 25);
  --color-accent-dark: rgb(202, 121, 25);
  --color-text: #333;
  --color-text-light: #888;
  --color-border: #e5e5e5;
  --header-height: 120px;
  --topbar-height: 36px;
  --nav-height: 64px;
  /* 内容区宽度：约 85% 视口，最大 1340px */
  --container-width: 1340px;
  --container-gutter: 10px;
  --font-sans: "Microsoft YaHei", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  max-width: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  line-height: 1.6;
  background: #fff;
  overflow-x: clip;
  max-width: 100%;
}

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

ul {
  list-style: none;
}

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

.container {
  width: min(85%, calc(100% - 2 * var(--container-gutter)));
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
}

.site-main {
  display: block;
  max-width: 100%;
  overflow-x: clip;
}