.wrap {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}
.cont {
  width: 1200px;
  margin: 0 auto;
}
.pc-hide {
  display: none;
}
.color-main {
  color: #0d3cca;
}
.text-bold {
  font-weight: bold;
}
.text-center {
  text-align: center;
}
html,
body {
  margin: 0 auto;
}
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: sticky;
  top: 0;
  left: 0;
  background-color: #0d3cca;
  z-index: 9999;
}
.nav-wrap .logo {
  line-height: 80px;
}
.nav-wrap .nav-list {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  width: 100%;
}
.nav-wrap .nav-list a {
  display: block;
  line-height: 88px;
  font-size: 18px;
  color: #fff;
}
.nav-wrap .nav-list li {
  position: relative;
  flex: 1;
  text-align: center;
}
.nav-wrap .nav-list li::after {
  content: '';
  display: block;
  width: 0;
  height: 3px;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 20px;
  background-color: #f6c088;
  transition: 300ms;
}
.nav-wrap .nav-list li:hover a,
.nav-wrap .nav-list li.active a {
  color: #f6c088;
}
.nav-wrap .nav-list li:hover::after,
.nav-wrap .nav-list li.active::after {
  width: 40px;
}
.m-nav-btn {
  display: none;
}
section {
  padding: 80px 0;
}
.title-wrap {
  margin: 0 auto;
}
.content {
  padding-top: 50px;
}
@media (max-width: 768px) {
  section {
    padding: 1rem 0;
  }
  .content {
    padding-top: 0.3rem;
  }
  p {
    font-size: 0.24rem;
  }
  .pc-show {
    display: none;
  }
  .pc-hide {
    display: block;
  }
  .wrap {
    max-width: 7.5rem;
    overflow: hidden;
  }
  .wrap .cont {
    width: 6.9rem;
  }
  .nav-wrap {
    height: 1rem;
    overflow: visible;
    position: fixed;
  }
  .nav-wrap .logo {
    line-height: 1rem;
  }
  .nav-wrap .m-nav-btn {
    width: 1rem;
    height: 1rem;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    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 span:nth-child(1) {
    width: 0.4rem;
  }
  .nav-wrap .m-nav-btn span:nth-child(2) {
    width: 0.5rem;
  }
  .nav-wrap .m-nav-btn.active span:nth-child(1) {
    width: 0.6rem;
    transform-origin: left;
    transform: rotate(44deg);
    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(-44deg);
    margin-top: 0.1rem;
    transition: 500ms;
  }
  .nav-wrap .nav-list {
    display: none;
    position: absolute;
    width: 3rem;
    top: 1rem;
    right: 0;
    background-color: #0d3cca;
  }
  .nav-wrap .nav-list li.active::after {
    display: none;
  }
  .nav-wrap .nav-list a {
    display: block;
    line-height: 0.8rem;
    color: #fff;
  }
}
