.wrap {
  width: 100%;
  margin: 0 auto;
}

.cont {
  width: 1200px;
  margin: 0 auto;
}

html,
body {
  margin: 0 auto;
  overflow-x: hidden;
}

body {
  padding-top: 80px;
}

p {
  color: #333;
  font-size: 18px;
  text-align: justify;
}

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 {
  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;
  padding: 0 10px;
  font-size: 18px;
  color: #A72638;
}

.nav-wrap .nav-list li:hover a,
.nav-wrap .nav-list li.active a {
  font-weight: bold;
  font-size: 22px;
  position: relative;
}

.nav-wrap .nav-list li:hover a::after,
.nav-wrap .nav-list li.active a::after {
  content: '';
  display: block;
  width: 20px;
  height: 4px;
  background: #A72638;
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  margin: auto;
}

.m-nav-btn {
  display: none;
}

section {
  padding: 80px 0;
}

.title-wrap {
  margin: 0 auto;
}

.content {
  padding-top: 50px;
}


.pc-hide {
  display: none;
}

@media (max-width: 768px) {
  section {
    padding: .9rem 0;
  }

  .content {
    padding-top: 0;
    margin-top: .3rem;
  }

  .pc-show {
    display: none;
  }

  .pc-hide {
    display: block;
  }

  body {
    padding-top: .9rem;
  }

  .wrap {
    max-width: 7.5rem;
    overflow: hidden;
  }

  .wrap .cont {
    width: 6.9rem;
  }

  .nav-wrap {
    height: 1rem;
    overflow: visible;
  }

  .nav-wrap .logo {
    line-height: .9rem;
  }

  .nav-wrap .logo img {
    height: .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: #A72638;
    transition: 500ms;
  }

  .nav-wrap .nav-list li a {
    font-size: .28rem;
  }

  .nav-wrap .nav-list li:hover a,
  .nav-wrap .nav-list li.active a {
    font-weight: bold;
    font-size: .28rem;
    position: relative;
  }

  .nav-wrap .nav-list li:hover a::after,
  .nav-wrap .nav-list li.active a::after {
    content: '';
    display: none;
  }

  .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: #A72638;
  }

  .nav-wrap .nav-list a {
    display: block;
    line-height: 0.8rem;
    color: #fff;
  }

  p {
    font-size: .28rem;
  }
}