:root {
  --main-width: 14.4rem;
  --nav-height: 0.8rem;
  --theme-color: #0a0a0b;
  --active-color: #00339f;
  --border-color: #e1e1e1;
}
@media screen and (max-width: 1200px) {
  :root {
    --main-width: 12rem;
    /* 屏幕宽度 <= 1200px 时调整为 1200px */
  }
}
@media screen and (max-width: 1024px) {
  :root {
    --main-width: 10.24rem;
    /* 屏幕宽度 <= 1024px 时调整为 1024px */
  }
}
@media screen and (max-width: 768px) {
  :root {
    --main-width: calc(100vw - 0.4rem);
    /* 屏幕宽度 <= 768px 时调整为 100% 的视口宽度 */
  }
}
@media screen and (max-width: 480px) {
  :root {
    --main-width: calc(100vw - 0.4rem);
    /* 屏幕宽度 <= 480px 时调整为 100% 的视口宽度 */
  }
}
* {
  box-sizing: border-box;
  outline: 0;
  -webkit-text-size-adjust: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
html {
  height: 100%;
  overflow-x: hidden;
}
html,
body,
div,
p,
strong,
span,
a,
b,
ul,
ol,
li,
dl,
dt,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
form,
del,
img,
i,
em,
select,
button,
textarea,
input {
  margin: 0;
  padding: 0;
}
body {
  background: #fff;
  font-family: "MiSans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", "PingFang SC", "Arial" !important;
  font-size: 0.16rem;
  color: #333;
  position: relative;
  min-height: 100%;
}
a,
img,
button,
input,
textarea,
select {
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}
input[type="text"],
input[type="hidden"],
input[type="password"],
button,
textarea,
select {
  outline: none;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  font-family: "Microsoft YaHei", "Arial", "SimSun", Serif;
}
select::-ms-expand {
  display: none;
}
input::-ms-clear {
  display: none;
}
table {
  border-collapse: collapse;
}
a {
  text-decoration: none;
  color: #333;
}
a:hover {
  text-decoration: none;
}
a:focus {
  text-decoration: none;
}
li {
  list-style: none;
}
img {
  vertical-align: middle;
  border: none;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
.clear {
  clear: both;
}
.hidden {
  overflow: hidden;
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-weight: normal;
}
.clearfix:after {
  content: "";
  display: block;
  height: 0;
  visibility: hidden;
  clear: both;
}
.clearfix {
  *zoom: 1;
}
.cell-box {
  font-size: 0;
}
.cell-box:before {
  content: "";
  height: 100%;
  display: inline-block;
  vertical-align: middle;
}
.cell-box .cell {
  width: 100%;
  display: inline-block;
  vertical-align: middle;
}
/*scroll*/
::-webkit-scrollbar {
  width: 0.04rem;
  height: 0.04rem;
}
::-webkit-scrollbar-button:vertical {
  display: none;
}
::-webkit-scrollbar-corner,
::-webkit-scrollbar-track {
  background-color: #f5f5f5;
}
::-webkit-scrollbar-thumb {
  border-radius: 0;
  background-color: #00419f;
}
::-webkit-scrollbar-thumb:vertical:hover {
  background-color: #00419f;
}
::-webkit-scrollbar-thumb:vertical:active {
  background-color: #00419f;
}
.content-con {
  position: relative;
  width: 100%;
}
.content-con .content-body {
  width: var(--main-width);
  max-width: 100vw;
  margin: 0 auto;
}
