#app {
  padding-top: 34px;
}
.header-tab-item {
  position: relative;
  line-height: 80px;
}
.header-popover {
  position: absolute;
  top: 80%;
  right: -15px;
  z-index: 1;
  box-sizing: border-box;
  padding: 16px 30px 98px;
  width: 500px;
  height: 280px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
  background-image: url(../img/popover-bg.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  visibility: hidden;
}
.header-tab-item:hover .header-popover,
.header-popover:hover {
  visibility: unset;
}
.header-popover > .header-popover-tab {
  width: 50%;
}
.header-popover .header-popover-tab-item {
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: initial;
}
.header-popover .header-popover-tab-child-item {
  padding-left: 48px;
  display: flex;
  flex-direction: column;
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  font-size: 14px;
  line-height: 25px;
  color: #000;
}
.header-popover-tab-child-item .primary {
  color: #003de5;
}
.tab-block {
  margin-bottom: 20px;
  border-bottom: 1px solid #c8cae1;
}
.tab-list {
  margin: 0;
  margin-bottom: -1px;
  padding: 0;
  display: flex;
  list-style: none;
}
.tab-item {
  box-sizing: border-box;
  padding: 11px 0 12px;
  width: 120px;
  height: 44px;
  text-align: center;
  color: var(--primary);
  background-color: #eeeef6;
  border-radius: 6px 6px 0px 0px;
  cursor: pointer;
}
.tab-item.active {
  color: #fff;
  background-color: var(--primary);
}
.tab-item a {
  color: currentColor;
  text-decoration-line: none;
}