.white {
  color: #fff;
}
.white a {
  color: #fff;
  text-decoration: none;
}
.white a:hover {
  color: #FFFCB2;
}
.white a:active, .white a:focus {
  outline: 0;
}
.menuSub ul a:hover {
  color: #ECD3A4;
  background: #63C5A8;
}
.menu {
  position: relative;
  width: 100%;
  height: 30px;
  max-width: 1000px;
  margin: 0 auto;
}
.menu li {
  float: left;
  width: 95%;
  height: auto;
  line-height: 45px;
  background: #63C5A8;
  padding: 10px;
  border-radius: 7px;
}
.menuSub {
  position: absolute;
  width: 95%;
  margin-top: 10px;
  display: none;
}
.menuSub li {
  margin: 0 0 0 10px;
  padding: 0;
  border-radius: 7px;
  border-top: 1px solid #fff;
}
.menuSub li a {
  padding-left: 20px;
  display: block;
  color: #fff;
  text-decoration: none;
  border-radius: 7px;
  background: #79C36E;
}
.menuSub li a:hover {
  background: #2C7C44;
  border-radius: 7px;
}
/* 下矢印 */
.init-bottom:after {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 0 2px 15px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.init-bottom img {
  vertical-align: middle;
}
@media only screen and (max-width: 799px) {
  .menu > li {
    width: 100%;
  }
}