[v-cloak] {
  display: none;
}
.header-outter {
  background: #f8f9fe;
}
.user-header {
  width: 1200px;
  display: flex;
  justify-content: space-between;
  margin: auto;
  height: 30px;
  line-height: 30px;
  font-size: 12px;
}
.user-header a {
  color: #888;
}
.user-header a:hover {
  color: #076ce0;
}
.user-header .header-left {
  display: flex;
}
.user-header .login-register {
  margin-left: 40px;
}
.user-header .login-register > a {
  margin-right: 10px;
}
.user-header .login-register > a:last-child {
  margin-right: 0;
}
.user-header .user-name {
  margin-left: 40px;
  color: #888;
  position: relative;
}
.user-header .user-name .user-popup {
  display: none;
  position: absolute;
  top: 30px;
  width: 100%;
  left: 0;
  background: #f8f9fe;
  padding: 0 0 8px 0;
  border-radius: 0 0 5px 5px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9;
  line-height: 1.5;
}
.user-header .user-name .user-popup a {
  padding: 6px 0;
  flex: 1;
  width: 100%;
  text-align: center;
  cursor: pointer;
  color: #999;
}
.user-header .user-name .user-popup a:hover {
  color: #FF5700;
}
.user-header .user-name .el-icon-arrow-down {
  transition: all 0.2s ease;
}
.user-header .user-name:hover .user-popup {
  display: flex;
}
.user-header .user-name:hover .el-icon-arrow-down {
  transform: rotate(-180deg);
}
