.wrap {
  width: 100%;
  margin: 0 auto;
}
.cont {
  width: 1200px;
  margin: 0 auto;
}
html,
body {
  margin: 0 auto;
}
body {
  padding-top: 80px;
}
html {
  scroll-behavior: smooth;
}
p {
  color: #333;
  text-align: justify;
  font-size: 16px;
  line-height: 1.5;
}
a:hover,
a:active,
a:visited,
a:link {
  text-decoration: none;
}
.flex-sb {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}
.nav-wrap {
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.08);
  height: 80px;
  overflow: visible;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: 999;
}
.nav-wrap .logo,
.nav-wrap .pc-nav-logo {
  line-height: 80px;
}
.nav-wrap .nav-list {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}
.nav-wrap .nav-list a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  height: 100%;
  color: #333;
}
.nav-wrap.fixTop {
  position: fixed;
  top: 0;
}
.m-nav-btn {
  display: none;
}
section {
  padding: 90px 0;
}
section .content {
  margin-top: 50px;
}
.title-wrap {
  margin: 0 auto;
}
.title-wrap p {
  text-align: center;
}
@media (max-width: 768px) {
  .pc-nav-logo {
    display: none;
  }
  section {
    padding: 40px 0;
  }
  section .content {
    margin-top: 20px;
  }
  .wrap {
    max-width: 7.5rem;
    overflow: hidden;
  }
  p {
    font-size: 0.24rem;
  }
  .wrap .cont {
    width: 6.9rem;
  }
  .nav-wrap {
    height: 1rem;
    overflow: visible;
  }
  .nav-wrap .logo {
    line-height: 1rem;
    height: 0.8rem;
  }
  .nav-wrap .m-nav-btn {
    width: 1rem;
    height: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .nav-wrap .m-nav-btn span {
    display: block;
    width: 0.6rem;
    height: 0.06rem;
    border-radius: 0.03rem;
    margin: 0.05rem 0;
    background-color: #F97022;
    transition: 500ms;
  }
  .nav-wrap .m-nav-btn.active span:nth-child(1) {
    transform-origin: left;
    transform: rotate(46deg);
    margin-bottom: 0.1rem;
    transition: 500ms;
  }
  .nav-wrap .m-nav-btn.active span:nth-child(2) {
    width: 0;
    transition: 500ms;
  }
  .nav-wrap .m-nav-btn.active span:nth-child(3) {
    transform-origin: left;
    transform: rotate(-46deg);
    margin-top: 0.1rem;
    transition: 500ms;
  }
  .nav-wrap .nav-list {
    display: none;
    position: absolute;
    top: 1rem;
    right: 0;
    background-color: #1e4eac;
  }
  .nav-wrap .nav-list a {
    display: block;
    line-height: 0.8rem;
    color: #fff;
  }
}
