* {
  margin: 0;
  padding: 0;
}
body {
  font-size: 16px;
}
.wrap {
  width: 100%;
  min-width: 1200px;
  background: url("../images/bg.png") 50%;
  background-size: cover;
  text-align: center;
  color: #24252a;
}
.banner {
  width: 100%;
  height: 600px;
  background-image: url("../images/banner.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50%;
}
.banner > div {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.banner p {
  font-size: 30px;
  font-weight: bold;
  color: #333;
  margin: 30px 0;
}

.header {
  width: 100%;
  height: 60px;
  min-width: 1200px;
  position: fixed;
  display: flex;
  justify-content: center;
  z-index: 1000;
  color: #24252a;
  background: hsla(0, 0%, 100%, 0.8);
  box-shadow: 0 0 6px 0 rgba(0, 21, 41, 0.08);
}
.header .header-content {
  width: 1120px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .logo-name {
  color: rgb(67, 109, 244);
  font-weight: bold;
  cursor: pointer;
}
.header .header-content .menu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.header .menu a {
  color: #333;
  outline-style: none; /*FF使用*/
  outline: none;
  -moz-outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.header .menu a:link {
  color: rgb(67, 109, 244);
  outline: none;
  text-decoration: none;
}
.header .menu a:hover {
  color: rgb(67, 109, 244);
  outline: none;
  text-decoration: none;
}
.header .menu-item:hover {
  color: rgb(67, 109, 244);
}
.header .menu .menu-item {
  padding: 0 20px;
  cursor: pointer;
}
.met-head {
  background-color: #fff;
}

.text-content {
  width: 1200px;
  margin: 0 auto;
  padding: 100px 30px 50px;
}
.text-title {
  font-size: 26px;
  color: #333;
  font-weight: bold;
  padding-bottom: 20px;
}
.text-box {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 0;
}
.text-box_p {
  font-size: 18px;
  color: #666;
  text-align: left;
}
.text-box_p span{
  display: block;
  text-indent: 2em;
}
.text-content img {
  width: 500px;
}
.text-box > div {
  width: 600px;
}

.footer {
  position: relative;
  width: 100%;
  height: 200px;
  text-align: center;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background-image: url("../images/home-footbg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50%; */
}
.footer-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
