:root {
  --base-font-size: 16px;
  --display-factor: 1;
  --layout-factor: 0.8;
  --min-font-size: 12px;
  --max-font-size: 20px;
}
@media (min-device-pixel-ratio: 1.25) and (max-device-pixel-ratio: 1.49) {
  :root {
    --scale-factor: 1.25;
  }
}
@media (min-device-pixel-ratio: 1.5) and (max-device-pixel-ratio: 1.74) {
  :root {
    --scale-factor: 1.5;
  }
}
@media (min-device-pixel-ratio: 1.75) and (max-device-pixel-ratio: 1.99) {
  :root {
    --scale-factor: 1.75;
  }
}
@media (min-device-pixel-ratio: 2) {
  :root {
    --scale-factor: 2;
  }
}
@media screen and (min-resolution: 120dpi) and (max-resolution: 140dpi) {
  :root {
    --display-factor: 0.9;
  }
}
@media screen and (min-resolution: 140.1dpi) and (max-resolution: 160dpi) {
  :root {
    --display-factor: 0.8;
  }
}
@media screen and (min-resolution: 160.1dpi) {
  :root {
    --display-factor: 0.7;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  :root {
    --layout-factor: 0.75;
  }
}
@media screen and (min-width: 1280.1px) and (max-width: 1440px) {
  :root {
    --layout-factor: 0.85;
  }
}
@media screen and (min-width: 1440.1px) and (max-width: 1680px) {
  :root {
    --layout-factor: 0.9;
  }
}
@media screen and (min-width: 1680.1px) and (max-width: 1920px) {
  :root {
    --layout-factor: 0.95;
  }
}
@media screen and (min-width: 1920.1px) and (max-width: 2560px) {
  :root {
    --layout-factor: 1;
  }
}
@media screen and (min-width: 2560.1px) {
  :root {
    --layout-factor: 1.2;
  }
}
@supports (--test: 1) and (font-size: clamp(1px, 1px, 1px)) {
  :root {
    font-size: clamp(var(--min-font-size), calc(var(--base-font-size) * var(--display-factor) * var(--layout-factor)), var(--max-font-size));
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}
@supports not ((--test: 1) and (font-size: clamp(1px, 1px, 1px))) {
  :root {
    font-size: 14px;
  }
  @media screen and (min-width: 1280px) and (max-width: 1440px) {
    :root {
      font-size: 15px;
    }
  }
  @media screen and (min-width: 1440px) {
    :root {
      font-size: 16px;
    }
  }
}
table,
table tr td {
  border: 1px solid #e5e5e5;
  text-align: center;
  font-size: 0.9375rem;
  word-wrap: break-word;
  table-layout: fixed;
}
table {
  width: 100%;
  min-height: 2.5rem;
  line-height: 2.5rem;
  text-align: center;
  border-collapse: collapse;
  padding: 2px;
}
.iconfont {
  font-family: "iconfont" !important;
  font-size: 1rem;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -webkit-text-stroke-width: 0.2px;
  -moz-osx-font-smoothing: grayscale;
}
* {
  margin: 0;
  padding: 0;
}
body,
div,
span,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
blockquote,
td,
tr,
th,
p {
  padding: 0;
  margin: 0;
}
li,
dd,
ol,
ul {
  list-style-type: none;
}
a {
  text-decoration: none;
  cursor: pointer;
}
img {
  border: none;
  outline: medium none;
}
img a {
  border: none;
}
input,
select,
button {
  outline: medium none;
  border: none;
  padding: 0;
  margin: 0;
  font-family: "Microsoft YaHei", Helvetica, sans-serif, "宋体";
}
textarea {
  outline: medium none;
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  resize: none;
  font-family: "Microsoft YaHei", Helvetica, sans-serif, "宋体";
}
i {
  font-style: normal;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}
ul li img {
  display: block;
  cursor: pointer;
}
:focus {
  outline: none;
}
a:hover {
  background: none;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0.2);
  -webkit-user-select: none;
  -moz-user-select: none;
}
input[type="button"],
input[type="submit"],
input[type="reset"],
button {
  -webkit-appearance: none;
}
textarea {
  -webkit-appearance: none;
}
em {
  font-style: normal;
}
.clear {
  clear: both;
}
.mr {
  margin-right: 0 !important;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
