.P {
  display: none;
}
html {
  font-size: 13vw;
}
.topbarM {
  width: 100vw;
  height: 48px;
  display: flex;
  align-items: center;
  background-color: #01102f;
}
.topbarM .logo {
  margin: 0 AUTO;
}
.topbarM .logo h1 {
  line-height: 48px;
  color: orange;
  font-size: 24px;
  font-weight: bold;
}
.navWrapper {
  width: 100vw;
}
.navWrapper .nav {
  display: flex;
  width: 100%;
  background-color: #ece8e8;
  justify-content: space-around;
}
.navWrapper .nav li {
  line-height: 40px;
  width: 24vw;
  margin: 5px auto;
}
.navWrapper .nav li a {
  display: block;
  font-size: 16px;
  text-decoration: none;
  color: black;
  text-align: center;
}
.navWrapper .nav li:nth-child(4) {
  border-bottom: 4px solid orange;
  font-weight: bold;
}
.contentWrapper {
  width: 100vw;
  line-height: 500px;
  text-align: center;
}
.footerM {
  margin-top: -7px;
  background-color: #01102f;
}
.footerM .footer {
  line-height: 16px;
  margin: 0 auto;
  padding-top: 20px;
  padding-bottom: 20px;
  width: 80%;
  font-size: 10px;
  color: lightgrey;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .M {
    display: none;
  }
  .P {
    display: block;
  }
  .navP {
    width: 100%;
    height: 100px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  }
  .navP .nav {
    position: relative;
    margin: 0 auto;
    width: 80%;
    height: 100%;
    display: flex;
    justify-content: space-around;
  }
  .navP .nav .logo {
    margin: 30px 20px;
    width: 142px;
    height: 35px;
    background-image: url(../img/top-logo-bg.png);
    background-repeat: no-repeat;
  }
  .navP .nav .logo:hover {
    background-position: 0 -35px;
  }
  .navP .nav ul {
    width: 70%;
    display: flex;
    justify-content: space-between;
  }
  .navP .nav ul li {
    width: 130px;
  }
  .navP .nav ul .gywm a {
    color: orange;
    font-size: 20px;
  }
  .navP .nav ul a {
    display: block;
    line-height: 100px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    color: black;
    text-align: center;
  }
  .navP .nav ul a:hover {
    color: orange;
  }
  .bannerP {
    height: 500px;
    background-image: radial-gradient(#d1e9f1, #7b98a5);
  }
  .bannerP .banner {
    margin: 0 auto;
    width: 70%;
    height: 100%;
  }
  .bannerP .banner img {
    width: 100%;
    height: 100%;
  }
  .aboutUsP {
    width: 1080px;
    margin: 0 auto;
    margin-top: 50px;
  }
  .aboutUsP .title {
    font-size: 16px;
    font-weight: bold;
    padding-left: 50px;
  }
  .aboutUsP .title p {
    color: #160f5e;
  }
  .aboutUsP .title span {
    font-size: 14px;
    color: #a0a0a0;
    padding-left: 10px;
  }
  .aboutUsP .contentL {
    margin-left: 80px;
    margin-right: -50px;
  }
  .aboutUsP .brief .content {
    width: 1080px;
    float: right;
    margin-bottom: 20px;
    padding-bottom: 40px;
    border-bottom: 1px dotted grey;
  }
  .aboutUsP .brief .content .contentL {
    float: left;
    width: 900px;
  }
  .aboutUsP .brief .content .contentL p {
    display: block;
    margin-top: 50px;
    text-align: center;
    font-size: 18px;
    line-height: 30px;
    color: darkblue;
    font-weight: bold;
  }
  .aboutUsP .brief .content .contentR img {
    width: 150px;
    border-radius: 100px;
  }
  .aboutUsP .vision .content {
    width: 1080px;
    float: right;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
  .aboutUsP .vision .content .contentL {
    float: left;
    width: 900px;
  }
  .aboutUsP .vision .content .contentL p {
    display: block;
    margin-top: 50px;
    text-align: center;
    font-size: 18px;
    line-height: 30px;
    color: darkred;
    font-weight: bold;
  }
  .aboutUsP .vision .content .contentR img {
    width: 150px;
    border-radius: 100px;
  }
}
