* {
  margin: 0 auto;
}
.header {
  width: 100%;
  height: 46px;
  background: #ffffff;
  box-shadow: 0px 4px 10px 1px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  margin: 0;
}
.user {
  margin: 0;
  line-height: 46px;
  width: 300px;
}
#user-head {
  vertical-align: text-top;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: none;
  margin-top: -2px;
  cursor: pointer;
}
.open-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.1);
  text-align: center;
  line-height: 20px;
  cursor: pointer;
}
.open {
  background: rgba(0, 0, 0, 0.1);
  color: #0d1639;
}
.close {
  background: #1d80ff;
  color: white;
}
.open-icon-close {
  display: none;
}

#user-panel {
  position: absolute;
  right: 150px;
  top: 50px;
  width: 200px;
  height: 253px;
  background: rgba(0, 0, 0, 0.02);
  border-radius: 4px 4px 4px 4px;
  display: none;
  text-align: center;
}
.user-panel-header {
  width: 200px;
  height: 60px;
  background: lightcoral;
  margin-bottom: -30px;
}
.user-panel-head {
  width: 60px;
  height: 60px;
  display: block;
  border-radius: 50%;
  user-select: none;
}
.user-panel-nickname {
  height: 22px;
  font-size: 16px;
  color: #0d1639;
  line-height: 22px;
  user-select: none;
  margin-top: 2px;
}
.user-panel-name {
  height: 17px;
  font-size: 12px;
  color: #0d1639;
  line-height: 17px;
  user-select: none;
  margin-top: 2px;
  margin-bottom: 24px;
}
.user-btn {
  cursor: pointer;
  outline: none;
  border: none;
  width: 200px;
  height: 48px;
  background: none;
}

.user-btn:hover {
  background: rgb(210, 207, 207);
}
