/** 全局Less变量 */
:root {
  --vp-screen-max-width: 1376px;
  --sidebar-width-xs: 20rem;
  --vp-sidebar-width-mobile: 320px;
  --vp-sidebar-width-small: 266px;
  --text-color: var(--el-text-color-primary);
  --text-color-light: var(--el-text-color-regular);
  --text-color-lighter: var(--el-text-color-secondary);
  --header-height: 55px;
  --nav-height: 55px;
  --border-color: var(--el-border-color);
  --bg-color: var(--el-bg-color);
  --block-tip-bg-color: rgba(var(--el-color-primary-rgb), 0.1);
  --block-warning-bg-color: rgba(var(--el-color-danger-rgb), 0.1);
  --link-active-bg-color: rgba(var(--el-color-primary-rgb), 0.1);
  --nav-z-index: 12;
  --sub-nav-z-index: 11;
  --sidebar-z-index: 11;
  --sidebar-z-index-mobile: 129;
  --overlay-z-index: 119;
  --menu-background: #304156;
  --menu-text: #bfcbd9;
  --menu-active-text: var(--el-menu-active-color);
  --menu-hover: #263445;
  --sidebar-logo-background: #2d3748;
}
:root .el-table {
  --el-table-current-row-bg-color: #ebf3fa;
}
/** 暗黑主题 */
html.dark {
  --menu-background: var(--el-bg-color-overlay);
  --menu-text: #fff;
  --menu-active-text: var(--el-menu-active-color);
  --menu-hover: rgba(0, 0, 0, 0.2);
  --sidebar-logo-background: rgba(0, 0, 0, 0.2);
}
*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
#app {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
img,
svg,
video,
canvas {
  max-width: 100%;
}
a {
  color: var(--el-color-primary);
  text-decoration: none;
}
a {
  font-weight: 500;
  text-decoration: inherit;
  color: var(--brand-color);
}
a:-webkit-any-link {
  color: -webkit-link;
  cursor: pointer;
}
a:hover,
a:focus {
  color: var(--el-color-primary-light-3);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  line-height: 1.25;
}
h1,
h2,
h3,
h4,
h5,
h6,
strong,
b {
  font-weight: 600;
}
h2 {
  margin-top: 2.25rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.3rem;
  line-height: 1.25;
  font-size: 1.65rem;
}
h2 + h3 {
  margin-top: 1.5rem;
}
h3 {
  margin-top: 2rem;
  font-size: 1.35rem;
}
h4,
h5,
h6,
p {
  font-size: inherit;
}
p,
ol,
ul {
  margin: 1rem 0;
  line-height: 1.7;
}
ul,
ol {
  padding-left: 1.25em;
}
.text-sm,
[text~='sm'] {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.items-center {
  align-items: center;
}
.flex {
  display: flex;
}
.flex-1 {
  flex: 1;
}
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.ml-2 {
  margin-left: 0.5rem;
}
.rounded-full {
  border-radius: 9999px;
}
.w24px {
  width: 24px;
}
.w-full {
  width: 100%;
}
.mr-10px {
  margin-right: 10px;
}
.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
button.reset-btn {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
}
.overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  transition: opacity 0.5s;
  z-index: var(--overlay-z-index);
}
.el-dropdown-menu__item.selected {
  background-color: var(--el-dropdown-menuItem-hover-fill);
  color: var(--el-dropdown-menuItem-hover-color);
}
@media (max-width: 767px) {
.el-scrollbar__bar.is-horizontal {
    display: none !important;
}
.el-scrollbar__wrap {
    overflow-x: hidden !important;
}
.el-scrollbar__view {
    max-width: 100%;
    overflow-x: hidden;
}
.el-container,
  .el-main {
    max-width: 100%;
    overflow-x: hidden;
}
}
