.head-wrap {
  width: 100%;
  background-color: #fff;
}
.head-wrap .head {
  width: 1200px;
  height: 100px;
  margin: 0 auto;
  /* background-color: lightblue; */
  display: flex;
  justify-content: space-between;
}
.head-wrap .head .left {
  display: flex;
  align-items: center;
}
.head-wrap .head .left .logo {
  width: 100px;
}
.head-wrap .head .left h1 {
  font-size: 30px;
  margin-left: 10px;
}
.head-wrap .head .nav {
  width: 480px;
  display: flex;
}
.head-wrap .head .nav li {
  flex: 1;
  text-align: center;
  line-height: 100px;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.head-wrap .head .nav li a {
  width: 100%;
}

.head-wrap .head .nav li:hover {
  background: #eff3f5;
}

.content {
  width: 1200px;
  min-height: calc(100% - 300px);
  margin: 0 auto;
}
.bottom {
  width: 1200px;
  height: 200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 16px;
}
.bottom p:nth-child(2) {
  text-indent: 20px;
  background: url("../../img/beian.png") no-repeat;
}
.bottom p a {
  color: blue;
  text-decoration: underline;
}
