﻿.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:first-child {
  border-bottom: 4px solid orange;
  font-weight: bold;
}
.columnWrapper {
  width: 100vw;
  margin-top: 10px;
}
.columnWrapper .wrapper {
  width: 90vw;
  margin: 10px auto;
  border-bottom: 1px solid #e2e1e1;
  display: flex;
  justify-content: space-around;
}
.columnWrapper .wrapper .leftImg {
  width: 20vw;
  margin: 0 auto;
}
.columnWrapper .wrapper .leftImg img {
  height: 40px;
  border-radius: 5px;
}
.columnWrapper .wrapper .rightContent {
  width: 65vw;
}
.columnWrapper .wrapper .rightContent a {
  display: block;
  text-decoration: none;
  font-size: 16px;
  text-align: left;
  line-height: 40px;
  color: black;
}
.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: 8px;
  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:active {
    background-position: 0 -35px;
  }
  .navP .nav ul {
    width: 70%;
    display: flex;
    justify-content: space-between;
  }
  .navP .nav ul li {
    width: 130px;
  }

  .navP .nav ul li.sy 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;
  }
 /* .navP .nav ul li.sy {
    visibility: hidden;
  }*/
  .bannerP {
    height: 600px;
    background-image: radial-gradient(#6699ff, #6699ff);
  }
  .bannerP .banner {
    margin: 0 auto;
    width: 90%;
    height: 100%;
  }
  .bannerP .banner img {
    width: 100%;
    height: 100%;
  }
}
