@charset "utf-8";

nav {
  margin-bottom: 20px;
}
nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 960px;
  margin: 0 auto;
}
nav ul:first-child {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  line-height: 1.8;
  margin-bottom: 10px;
}
nav ul:first-child li:not(:first-child) {
  margin-left: 20px;
}
nav ul:last-child li {
  width: 96px;
  text-align: center;
  cursor: pointer;
  font-size: 13px
}
nav ul:last-child  li:first-child {
  padding: 0 8px;
}
nav ul:last-child  li:nth-child(2n) {
  /*background: rgba(0,0,0,0.3);*/
}
nav ul:last-child  li {
  border-right: 1px solid #efefef;
}
nav ul:last-child  li:first-child img {
  max-width: 100%;
}
nav ul:last-child  li:not(:first-child) img {
  width: 80%;
  margin-bottom: 5px;
}
nav li a {
  display: block;
  text-decoration: none;
  color: #999999;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
nav li a:hover {
  opacity: 0.7;
  color: #000000;
}
.search input[type="text"] {
  float: left;
  font-size: 16px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 2px;
}
.search input[type="submit"] {
  float: left;
  background: #000;
  border: none;
  font-size: 16px;
  color: #fff;
  letter-spacing: 5px;
  text-align: center;
  padding: 2px 1px 0px 7px;
  cursor: pointer;
}
