.mp-1-header {
  position: fixed;
  z-index: 101;
  top: 0;
  left: 0;
  right: 0;
  height: 48px;
  box-shadow: 0 4px 8px -2px rgb(0 0 0 / 5%);
  padding: 0 20px;
  display: flex;
  background-color: #fff;
}
.mp-1-header > .mp-1-dropdown .mp-1-logo {
  min-width: 236px;
  display: flex;
  flex-shrink: 1;
}
.mp-1-header > .mp-1-dropdown .mp-1-logo > img {
  width: 35px;
  height: 32px;
  vertical-align: top;
  margin: 8px 10px 0 0;
}
.mp-1-header > .mp-1-dropdown .mp-1-logo > .mp-1-title {
  height: 48px;
  line-height: 48px;
  color: #2f54eb;
  font-size: 18px;
  font-weight: 600;
  overflow: hidden;
  white-space: nowrap;
}

.mp-1-header > .mp-1-systems {
  flex: 1;

  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}
.mp-1-header > .mp-1-systems > .nav-links {
  flex: 1;

  height: 48px;
  line-height: 48px;
  display: flex;
  flex-wrap: wrap;
}
.mp-1-header > .mp-1-systems > .nav-links > a {
  padding: 0 10px;
  margin: 0;
  text-decoration: none;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.85);
  cursor: pointer;
  background-color: transparent;
  outline: none;
  transition: color .3s;
  -webkit-text-decoration-skip: objects;
}
.mp-1-header > .mp-1-systems > .nav-links > a:hover {
  color: #1890ff;
  background-color: #f0f7ff;
}
.mp-1-header > .mp-1-systems > .nav-links > a.mp-1-active {
  color: #1890ff;
}

.mp-1-header > .mp-1-systems > .dropdown {
  height: 48px;
  position: relative;
  display: none;
}
.mp-1-header > .mp-1-systems > .dropdown > .dropdown-toggle {
  line-height: 48px;
  background-color: #FFF;
  border: none;
  padding: 0 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: background-color 0.2s;
}
.mp-1-header > .mp-1-systems > .dropdown > .dropdown-toggle:hover {
  color: #1890ff;
  background-color: #f0f7ff;
}
.mp-1-header > .mp-1-systems > .dropdown > .dropdown-menu {
  position: absolute;
  top: 49px;
  right: 0;
  background-color: white;
  min-width: 150px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  padding: 10px 0;
  z-index: 100;
  display: none;
  flex-direction: column;
}
.mp-1-header > .mp-1-systems > .dropdown > .dropdown-menu > a {
  padding: 10px 15px;
  text-decoration: none;
  color: #000;
  transition: background-color 0.2s;
  white-space: nowrap;
  cursor: pointer;
}
.mp-1-header > .mp-1-systems > .dropdown > .dropdown-menu > a:hover {
  background-color: #f0f7ff;
  color: #1890ff;
}
.mp-1-header > .mp-1-systems > .dropdown > .dropdown-menu > a.mp-1-active {
  color: #1890ff;
}
.mp-1-header > .mp-1-systems > .dropdown.active > .dropdown-menu {
  display: flex;
}

.mp-1-header > .mp-1-user {
  flex-shrink: 1;
  padding: 0 10px;
  margin-right: -10px;
  cursor: pointer;
}
.mp-1-header > .mp-1-user:hover {
  background-color: #f0f7ff;
}
.mp-1-header > .mp-1-user > div > #avatar {
  width: 24px;
  height: 24px;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  vertical-align: top;
  margin: 12px 4px 0 0;
}
.mp-1-header > .mp-1-user > div > #username {
  height: 48px;
  line-height: 48px;
  display: inline-block;
  min-width: 28px;
}

.mp-1-body {
  margin-top: 48px;
  height: calc(100vh - 48px);
  background-color: rgb(240, 242, 245);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

#micro-app, #micro-app>div {
  height: 100%;
}