.wrap {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}
.wrap .cont {
  width: 1200px;
  margin: 0 auto;
}
.pc-hide {
  display: none;
}
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;
}
.flex-center {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.nav-wrap {
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.08);
  height: 80px;
  overflow: visible;
  position: sticky;
  margin-top: -2px;
  top: 0;
  left: 0;
  z-index: 99;
  background-color: #036937;
}
.nav-wrap .logo {
  line-height: 80px;
}
.nav-wrap .nav-list {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}
.nav-wrap .nav-list a {
  display: block;
  line-height: 80px;
  color: #fff;
  transition: 500ms;
  position: relative;
}
.nav-wrap .nav-list a::after {
  position: absolute;
  content: '';
  display: block;
  width: 100%;
  height: 4px;
  bottom: 0;
  left: 0;
  background-color: transparent;
}
.nav-wrap .nav-list li {
  padding: 0 40px;
}
.nav-wrap .nav-list li:hover a::after,
.nav-wrap .nav-list li.active a::after {
  position: absolute;
  content: '';
  display: block;
  width: 100%;
  height: 4px;
  bottom: 5px;
  left: 0;
  background-color: #fff;
}
.m-nav-btn {
  display: none;
}
section {
  padding: 80px 0 50px;
}
.title-wrap {
  margin: 0 auto;
}
.content {
  padding-top: 50px;
}
@media (max-width: 768px) {
  p {
    font-size: 0.28rem;
  }
  section {
    padding-top: 0.5rem;
  }
  .pc-show {
    display: none;
  }
  .pc-hide {
    display: block;
  }
  .wrap {
    max-width: 7.5rem;
    overflow: hidden;
  }
  .wrap .cont {
    width: 6.9rem;
  }
  body {
    padding-top: 0.9rem;
  }
  .nav-wrap {
    height: 1rem;
    overflow: visible;
    position: fixed;
    top: 0;
    left: 0;
  }
  .nav-wrap .logo {
    line-height: 1rem;
    height: 0.6rem;
  }
  .nav-wrap .logo img {
    height: 100%;
  }
  .nav-wrap .m-nav-btn {
    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: #fff;
    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: #036937;
  }
  .nav-wrap .nav-list li {
    padding: 0 0.4rem;
  }
  .nav-wrap .nav-list li.active {
    background: #fff;
  }
  .nav-wrap .nav-list li.active a {
    color: #036937;
  }
  .nav-wrap .nav-list li.active a::after {
    display: none;
  }
  .nav-wrap .nav-list a {
    display: block;
    line-height: 0.8rem;
    text-align: right;
    color: #fff;
  }
  .nav-wrap .nav-list a::after {
    display: none;
  }
}
