.functional {
  display: flex;
  align-self: center;
}

.func {
  display: flex;
  margin-right: 10px;
  align-self: center;
  cursor: pointer;
  height: 50px;
}
.func-icon {
  width: 50px;
  height: 50px;
  margin-right: 4px;
}
.func-name {
  font-size: 16px;
  color: #111;
  line-height: 50px;
}


.logged {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 50px;
  min-width: 141px;
  float: right;
  font-size: 16px;
}

.logged .avatar {
  width: 40px;
  height: 40px;
  border-radius: 100%;
}

.logged .name {
  font-size: 16px;
  line-height: 16px;
  color: #333;
  padding: 0 6px;
}

.logged .arrow-down {
  width: 10px;
  height: 7px;
}

.logged .logged-fixed {
  display: none;
  position: absolute;
  top: 0px;
  left: 0;
  z-index: 100;
  min-width: 141px;
  background: #f8f8f8;
  border-radius: 3px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}

.logged:hover .logged-fixed {
  display: block;
}

.logged .logged-fixed .origin-box {
  min-width: 141px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logged .logged-fixed .origin-box .avatar {
  width: 40px;
  height: 40px;
  border-radius: 100%;
}

.logged .logged-fixed .origin-box .name {
  font-size: 16px;
  line-height: 16px;
  color: #666;
  padding: 0 6px;
}

.logged .logged-fixed .origin-box .arrow-top {
  width: 10px;
  height: 7px;
}

.logged .logged-fixed .fixed-name {
  display: inline-block;
  min-width: 141px;
  height: 32px;
  background: #ffffff;
  color: #666666;
  font-size: 14px;
  text-align: center;
  line-height: 32px;
  margin-bottom: 4px;
}

.logged .logged-fixed .fixed-name:last-child {
  margin-bottom: 0;
  cursor: pointer;
}

.logged .logged-fixed .fixed-name:hover {
  background-color: #b20b30;
  color: #ffffff;
}