.header {
  height: 118px;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 20px;
}

.header .logo {
  float: left;
  padding: 25px 0;
}

.header .logo img {
  display: block;
  height: 68px;
}

.header .actions {
  float: none;
  overflow: hidden;
  font-size: 0;
  line-height: 0;
  padding: 25px 0;
}

.header .actions .buttons {
  float: right;
  padding: 14px 0;
  margin-left: 60px;
}

.header .actions .buttons .item {
  display: inline-block;
  vertical-align: middle;
  width: 100px;
  height: 40px;
  text-align: center;
  line-height: 36px;
  box-sizing: border-box;
  font-size: 16px;
  border: 2px solid #eb6129;
  border-radius: 5px;
  cursor: pointer;
}

.header .actions .buttons .login {
  background-color: #eb6129;
  color: #fff;
  margin-left: 10px;
}

.header .actions .buttons .join {
  color: #eb6129;
}

.header .actions .buttons .member {
  display: flex;
  align-items: center;
  font-size: 16px;
}

.header .actions .buttons .member .photo {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  cursor: pointer;
}

.header .actions .buttons .member .photo .image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 100%;
}

.header .actions .buttons .member .logout {
  cursor: pointer;
  margin-left: 15px;
}

.header .actions .menus {
  float: none;
  overflow: hidden;
  text-align: right;
}

.header .actions .menus .item {
  display: inline-block;
  vertical-align: middle;
  line-height: 68px;
  font-size: 18px;
  cursor: pointer;
  position: relative;
}

.header .actions .menus .item:after {
  content: "";
  position: absolute;
  bottom: 10px;
  height: 5px;
  width: 20px;
  border-radius: 5px;
  background-color: #fff;
  left: 50%;
  margin-left: -10px;
}

.header .actions .menus .router-link-exact-active:after {
  background-color: #eb6129;
}

.header .actions .menus .item + .item {
  margin-left: 55px;
}
