/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

/*--如果你的网站已经安装了reset.css请去掉上面的代码段--*/
.nav1 {
  background: #444;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.nav1 .mobNav {
  display: none;
}
.nav1 .dropdown {
  width: 100%;
}
.nav1 .menu {

}
.nav1 .menu li {
}
.nav1 .menu li:last-child a {
  border-right: none;
}
.nav1 .menu a {
  color: #333;
  padding:10px; 
  text-align:center; 
  font-size:14px; 
  background:#ebebeb; 
  border-bottom:#fff 1px solid;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-decoration: none;
}
.nav1 .menu a:hover {
  background: #0C53A5;
  color:#ff0000;
  -webkit-transition: all 300ms linear;
  transition: all 300ms linear;
}
@media screen and (max-width: 750px) {
  .nav1 {
    background: none;
    position: relative;
    padding: 2vw;
  }
  .nav1 .mobNav {
    display: block;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .nav1 .mobNav .toolBar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 8vw;
    overflow: hidden;
  }
  .nav1 .mobNav .menuBtn {
    padding: 0;
    margin: 0;
    height: 8vw;
    width: 8vw;
    background:  url(/bar.png) center center no-repeat;
    background-size: 7vw 7vw;
    border: none;
    outline: none;
    border-radius: 1px;
  }
  .nav1 .mobNav .menuBtn:active {
    opacity: 0.8;
  }
  .nav1 .mobNav .menuBtn.close {
    background:  url(/close.png) center center no-repeat;
    background-size: 5vw 5vw;
  }
  .nav1 .mobNav a {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    align-items: center;
  }
  .nav1 .mobNav a img {
    height: 100%;
    width: auto;
  }
  .nav1 .mobNav span {
    width: 8vw;
    height: 8vw;
  }
  .nav1 .dropdown {
    position: absolute;
    left: 0;
    top: 12vw;
    width: 100vw;
    background: rgba(0, 0, 0, 0.3);
    z-index: 999;
    display: none;
  }
  .nav1 .dropdown .menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
	margin-top:-45px;
  }
  .nav1 .dropdown .menu li {
    width: 89%;
  }
  .nav1 .dropdown .menu li:last-child a {
    border-bottom: 0;
  }
  .nav1 .dropdown .menu a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-right: none;
    text-indent: 2vw;
    border-bottom: 1px solid #ddd;
  }
  .nav1 .dropdown.show {
    display: block;
  }
}
