* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
}
html {
  min-width: 1250px;
}
.wrapper {
  width: 1200px;
  margin: 0 auto;
}
.top {
  background-image: url(../images/top.png);
  background-repeat: no-repeat;
  background-position: center;
  height: 140px;
}
.top .wrapper {
  position: relative;
}
.top .top-left {
  margin-left: 20px;
  margin-bottom: 40px;
}
.top .top-right {
  width: 520px;
  margin-top: 12px;
  margin-left: 30px;
}
.top .top-logo {
  position: absolute;
  top: 50%;
  right: 60px;
  transform: translate(0, -50%);
}
.nav {
  background-color: #b70a0a;
}
.nav .wrapper {
  display: flex;
}
.nav .item {
  position: relative;
  flex-grow: 1;
}
.nav a {
  position: relative;
  display: block;
  height: 42px;
  width: 100%;
  line-height: 42px;
  font-size: 20px;
  color: #fff;
  text-align: center;
}
.nav .item:not(:last-child) > a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  width: 2px;
  height: 20px;
  background-color: #fff;
}
.nav .item:last-child .open a {
  font-size: 12px;
}
.nav .open {
  display: none;
  position: absolute;
  z-index: 20;
  top: 42px;
  left: 0;
  width: 100%;
}
.nav .open a {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #db8484;
  font-size: 15px;
  color: #fff;
}
.nav .open a:hover {
  background-color: #b70a0a;
}
.nav .item:hover .open {
  display: block;
}
.footer {
  background-image: url(../images/footer.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto 100%;
  box-sizing: content-box;
  padding: 20px;
}
.footer .wrapper {
  padding: 0 20px;
}
.footer .title {
  width: fit-content;
  font-size: 20px;
  font-weight: bold;
  line-height: 36px;
  border-bottom: 2px solid #b70a0a;
  margin-bottom: 15px;
}
.footer .items-link {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer .items-link .item {
  font-size: 14px;
  line-height: 40px;
  color: #000;
}
.footer .items-link .item:hover {
  color: #b70a0a;
}
.footer .items-info {
  display: flex;
  flex-wrap: wrap;
}
.footer .items-info .info {
  width: 100%;
  display: grid;
  grid-template-columns: 400px 400px 400px;
}
.footer .items-info .info .item {
  display: flex;
}
.footer .items-info .info .item:nth-child(2) {
  width: 100%;
  justify-content: center;
}
.footer .items-info .bq {
  width: 100%;
  display: flex;
  justify-content: center;
}
.footer .items-info .bq div {
  font-size: 12px;
  display: flex;
  margin: 20px 20px;
}
.footer .items-info .bq div p {
  margin: 0 10px;
}