:root {
  --border-color: #0d47a1;
  --white-color: #fff;
  --nav-bg-color: #002171;
  --table-border-color: #42a5f5;
  --light-gray-bg: #bbdefb;
  --yellow-color: #ffeb3b;
  --text-primary-color: #000a12;
  --tits-text-color: #000a12;
  --tits-bg-color: #1976d2;
  --bxym-col2-bg: #1565c0;
  --red-color: #f44336;
  --blue-color: #2196f3;
  --green-color: #4caf50;
  --table-header-gradient-start: #0d47a1;
  --table-header-gradient-end: #2196f3;
}

* {
  margin: 0;
  padding: 0;
  font-size: 100%;
}

body {
  width: 100%;
  max-width: 720px;
  min-height: 100vh;
  margin: 0 auto;
  line-height: 1.75;
  font-size: 16px;
  font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
  word-break: break-all;
  word-wrap: break-word;
  border-left: solid 10px var(--border-color);
  border-right: solid 10px var(--border-color);
  background: var(--white-color);
  box-sizing: border-box;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

a {
  display: inline-block;
  text-decoration: none;
  color: inherit;
}

:focus {
  outline: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  border: 1px solid black;
}

td,
th {
  border: 1px solid var(--table-border-color);
}

.h10 {
  height: 10px;
  font-size: 0;
  line-height: 0;
  clear: both;
  background: var(--light-gray-bg);
}

.nav2 {
  width: 100%;
  max-width: 720px;
  /* padding: 4px; */
  box-sizing: border-box;
  text-align: center;
  background: var(--white-color);
  position: sticky;
  top: 0;
  z-index: 9;
}

.nav2 ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
}

.nav2 ul li {
  width: 25%;
  padding: 2px;
  box-sizing: border-box;
}

.nav2 ul li a {
  display: block;
  height: 36px;
  line-height: 36px;
  color: var(--white-color);
  border-radius: 5px;
  background: var(--nav-bg-color);
  font-weight: bold;
}

#nav2[data-fixed="fixed"] {
  box-shadow: 0 5px 10px rgba(0, 0, 0, .05);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9;
  margin: auto;
}

.footer {
  padding: 10px 0;
  text-align: center;
  color: var(--white-color);
  background: var(--nav-bg-color);
  font-size: 14px;
}

.blue {
  color: var(--blue-color);
}

.red {
  color: var(--red-color);
}

mark {
  color: var(--red-color);
}

.common-table {
  /* font-weight: bold; */
  /* font-size: 18px; */
  text-align: center;
}

.common-table thead th {
  padding: 5px;
  color: var(--yellow-color);
  /* font-size: 24px; */
  text-shadow: 0 2px 0 rgba(0, 0, 0, .5);
  background: linear-gradient(to top, var(--table-header-gradient-start), var(--table-header-gradient-end));
}

.common-table td {
  padding: 3px 5px;
}

.common-table td.tits {
  color: var(--tits-text-color);
  text-align: center;
  background: var(--tits-bg-color);
  /* font-size: 20px; */
  font-weight: bold;
}

.bxym table {
  font-size: 14px;
}

.bxym table thead th {
  font-size: 18px;
}

.bxym table td {
  padding: 3px 0;
}

.bxym-col1,
.bxym-col3 {
  width: 27%;
}

.bxym-col2 {
  background: var(--bxym-col2-bg);
}

.ybbm-txt2 {
  color: var(--red-color);
  /* font-weight: normal; */
}

.ybbm-txt3 {
  color: var(--blue-color);
  /* font-weight: normal; */
}

.ybbm-txt4 {
  color: var(--green-color);
  /* font-weight: normal; */
}

.yxym-tbody {
  text-align: left;
}

.yxym-tfoot {
  color: var(--green-color);
  background: var(--tits-bg-color);
  /* font-size: 20px; */
}
td{
  color: var(--text-primary-color);
}
@media screen and (max-width:480px) {
  body {
    font-size: 13px;
    border-left: solid 5px var(--border-color);
    border-right: solid 5px var(--border-color);
    max-width: 100%;
    box-sizing: border-box;
  }

  .common-table td.tits {
    font-size: 14px;
  }

  .yxym-tfoot {
    font-size: 15px;
  }

  .h10 {
    height: 6px;
  }

  .nav2 ul li {
    padding: 1px;
  }

  .nav2 ul li a {
    height: 26px;
    line-height: 26px;
    font-size: 14px;
    border-radius: 2px;
    color: var(--white-color);
    background: var(--nav-bg-color);
    font-weight: bold;
  }

  .common-table {
    font-size: 14px;
  }

  .common-table thead th {
    font-size: 14px;
    color: var(--yellow-color);
    text-shadow: 0 2px 0 rgba(0, 0, 0, .5);
    background: linear-gradient(to top, var(--table-header-gradient-start), var(--table-header-gradient-end));
  }

  .bxym table {
    font-size: 13px;
  }

  .bxym table thead th {
    font-size: 17px;
  }

  .bxym table td {
    padding: 3px 0;
  }
}