﻿.wrap {
  width: 100%;
  margin: 0 auto;
}
.cont {
  width: 1200px;
  margin: 0 auto;
}
html,
body {
  margin: 0 auto;
}
p {
  color: #333;
  text-align: justify;
  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 {
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.08);
  height: 80px;
  overflow: visible;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 200;
  background-color: #a41034;
}
.nav-wrap .logo {
  line-height: 80px;
}
.nav-wrap .nav-list {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  width: 100%;
  font-size: 18px;
}
.nav-wrap .nav-list a {
  display: block;
  line-height: 80px;
  color: #fff;
  text-align: center;
}
.nav-wrap .nav-list li:hover,
.nav-wrap .nav-list li.active {
  font-weight: bold;
}
.nav-wrap .nav-list li:hover a,
.nav-wrap .nav-list li.active a {
  color: #c9a062;
  background-image: url(../images/banner-icon.png);
  background-repeat: no-repeat;
  background-position: center bottom 15px;
}
.m-nav-btn {
  display: none;
}
section {
  padding: 60px 0;
}
.title-wrap {
  margin: 0 auto;
}
.content {
  margin-top: 40px;
}
@media (max-width: 768px) {
  p {
    font-size: 0.24rem;
  }
  .wrap {
    max-width: 7.5rem;
    overflow: hidden;
  }
  .wrap .cont {
    width: 6.9rem;
  }
  section {
    padding: 0.8rem 0;
  }
  .content {
    margin-top: 0.4rem;
  }
  .nav-wrap {
    height: 1rem;
    overflow: visible;
  }
  .nav-wrap .logo {
    line-height: 1rem;
  }
  .nav-wrap .logo img {
    height: 0.6rem;
  }
  .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: #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: #a41034;
    width: 2.8rem;
  }
  .nav-wrap .nav-list a {
    font-size: 0.3rem;
    display: block;
    line-height: 0.8rem;
    color: #fff;
  }
  .nav-wrap .nav-list li:hover a,
  .nav-wrap .nav-list li.active a {
    background-image: unset;
  }
}