.wrap {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}
.cont {
  width: 1200px;
  margin: 0 auto;
}
html,
body {
  margin: 0 auto;
}
p {
  text-align: justify;
  font-size: 16px;
  line-height: 1.8;
}
a:hover,
a:active,
a:visited,
a:link {
  text-decoration: none;
}
.flex-sb {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}
.nav-wrap {
  display: none;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.08);
  height: 80px;
  overflow: visible;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #3a85f8;
}
.nav-wrap .logo {
  line-height: 80px;
  display: none;
}
.nav-wrap .nav-list {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}
.nav-wrap .nav-list a {
  display: block;
  line-height: 80px;
  padding: 0 20px;
  color: #fff;
}
.nav-wrap .nav-list li:hover a,
.nav-wrap .nav-list li.active a {
  color: #ffc994;
  font-weight: bold;
  position: relative;
}
.nav-wrap .nav-list li:hover a::after,
.nav-wrap .nav-list li.active a::after {
  content: '';
  display: block;
  border-bottom: 8px solid #ffc994;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  width: 0;
  height: 0;
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  margin: auto;
}
.m-nav-btn {
  display: none;
}
section {
  padding: 80px 0;
}
.content {
  padding-top: 50px;
}
@media (max-width: 768px) {
  p {
    font-size: 0.24rem;
  }
  .wrap {
    max-width: 7.5rem;
    overflow: hidden;
  }
  .wrap .cont {
    width: 6.9rem;
  }
  .nav-wrap {
    height: 1rem;
    overflow: visible;
  }
  .nav-wrap .logo {
    line-height: 1rem;
    display: block;
  }
  .nav-wrap .logo img {
    height: 0.6rem;
    line-height: 1rem;
  }
  .nav-wrap .m-nav-btn {
    width: 0.5rem;
    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: #3a85f8;
    width: 2.4rem;
    background-image: linear-gradient(0deg, #b0041a 0%, #8c1a60 47%, #601559 76%, #340f51 100%);
  }
  .nav-wrap .nav-list a {
    display: block;
    line-height: 0.8rem;
    color: #fff;
    text-align: center;
  }
  .nav-wrap .nav-list li.active a::after,
  .nav-wrap .nav-list li:hover a::after {
    display: none;
  }
}
