* {
  margin: 0;
  padding: 0;
  font-family: --apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
.main {
  width: 1100px;
  margin: 0 auto;
}
/* a */
a {
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
.nav {
  background-color: #fff;
}
.nav .flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav .main {
  height: 120px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav .navlist {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav .navlist a {
  color: #333;
  margin-left: 30px;
  font-size: 18px;
}
.nav .navlist a:hover {
  color: #df0000;
  text-decoration: none;
}
.banner {
  background-color: #df0000;
}
.banner .main {
  height: 200px;
  background-color: #df0000;
}
.banner .main .text {
  padding-top: 120px;
  color: #fff;
  font-size: 36px;
}
.content_wpr p {
  font-size: 16px;
  margin: 1em 0;
  line-height: 2em;
}
.content_wpr table {
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
  min-width: 600px;
}
.content_wpr table td,
.content_wpr table th {
  border-bottom: 1px solid #ccc;
  border-right: 1px solid #ccc;
  padding: 3px 5px;
  min-height: 30px;
  height: 30px;
}
.footer {
  font-size: 14px;
  background-color: #2e2e2e;
}
.footer .main {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #b5b4b4;
  background-color: #2e2e2e;
}
.footer .main a {
  color: #b5b4b4;
}
.footer .main .layout-left {
  min-width: 360px;
  text-align: center;
}
.footer .main .layout-left .company-name {
  margin-bottom: 6px;
}
.footer .main .layout-left .copyright {
  color: #7e7d7d;
  margin-bottom: 6px;
}
.footer .main .layout-left .border-right::after {
  content: '|';
  margin: 0 5px;
}
.footer .main .layout-right {
  max-width: 500px;
}
.footer .main .address {
  margin-top: 6px;
}
@media screen and (max-width: 992px) {
  .main {
    width: 100%;
    padding: 0 2%;
    box-sizing: border-box;
  }
  .footer .main {
    flex-direction: column;
  }
  .footer .main .layout-middle {
    display: none;
  }
  .footer .main .layout-right {
    margin-top: 16px;
    padding: 0 12px;
    text-align: center;
  }
  .layout-left {
    width: 100%;
    justify-content: center !important;
  }
}
