@charset "UTF-8";
.zoom-ani-enter-active {
  animation: zoomBigIn 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
}
.zoom-ani-leave-active {
  animation: zoomBigOut 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
}

@keyframes zoomBigIn {
  0% {
    transform: none;
    opacity: 0;
  }
  1% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes zoomBigOut {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.8);
    opacity: 0;
  }
}
.fade-enter-active, .fade-leave-active {
  transition: opacity 0.5s ease;
}
.fade-enter-from, .fade-leave-to {
  opacity: 0;
}

.x-drag-resize {
  position: relative;
}
.x-drag-resize_stick {
  position: absolute;
  transform: translate(-50%, -50%);
}
.x-drag-resize_stick-tl {
  top: 0;
  left: 0;
  cursor: nwse-resize;
}
.x-drag-resize_stick-tc {
  top: 0;
  left: 50%;
  cursor: n-resize;
}
.x-drag-resize_stick-tr {
  top: 0;
  left: 100%;
  cursor: nesw-resize;
}
.x-drag-resize_stick-cl {
  top: 50%;
  left: 0;
  cursor: e-resize;
}
.x-drag-resize_stick-cr {
  top: 50%;
  left: 100%;
  cursor: e-resize;
}
.x-drag-resize_stick-bl {
  top: 100%;
  left: 0;
  cursor: nesw-resize;
}
.x-drag-resize_stick-bc {
  top: 100%;
  left: 50%;
  cursor: n-resize;
}
.x-drag-resize_stick-br {
  top: 100%;
  left: 100%;
  cursor: nwse-resize;
}
.x-drag-resize-default > .x-drag-resize_stick {
  display: none;
  width: 8px;
  height: 8px;
  box-sizing: border-box;
  border: 0.1px solid rgba(0, 0, 0, 0.15);
  background: #259eff;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.6);
}
.x-drag-resize-simple > .x-drag-resize_stick {
  width: 8px;
  height: 8px;
  opacity: 0;
}
.x-drag-resize-simple > .x-drag-resize_stick-tc, .x-drag-resize-simple > .x-drag-resize_stick-bc {
  width: calc(100% - 8px);
}
.x-drag-resize-simple > .x-drag-resize_stick-cl, .x-drag-resize-simple > .x-drag-resize_stick-cr {
  height: calc(100% - 8px);
}
.x-drag-resize-active > .x-drag-resize_stick {
  display: unset;
}
.x-drag-resize-default.x-drag-resize-active::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 1px solid rgba(255, 255, 255, 0.6);
  pointer-events: none;
}

.x-icon {
  box-sizing: border-box;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-variant: tabular-nums;
  font-family: 微软雅黑;
  line-height: 1.5715;
  display: inline-block;
  width: 1em;
  height: 1em;
  line-height: 1;
  text-align: center;
  vertical-align: middle;
  color: inherit;
  font-size: inherit;
  fill: currentColor;
  box-sizing: unset;
}
.x-icon svg {
  width: 1em;
  height: 1em;
}
.x-icon-spin svg {
  animation: iconSpinAni 1s infinite linear;
}

@keyframes iconSpinAni {
  to {
    transform: rotate(360deg);
  }
}
.x-btn {
  box-sizing: border-box;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-variant: tabular-nums;
  font-family: 微软雅黑;
  line-height: 1.5715;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 15px;
  font-size: 14px;
  line-height: 1.5715;
  border: 0;
  white-space: nowrap;
  cursor: default;
  user-select: none;
  border-radius: 0;
  text-decoration: none;
}
.x-btn-default {
  color: rgb(51, 51, 51);
  background: rgb(51, 51, 51);
}
.x-btn-default::after {
  content: " ";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 2px solid #585858;
  border-color: rgb(51, 51, 51);
  border-color: rgb(51, 51, 51);
  border-width: 0;
  pointer-events: none;
}
.x-btn-default:hover {
  color: rgb(77, 77, 77);
}
.x-btn-default:hover::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 2px solid #585858;
  border-color: rgb(77, 77, 77);
}
.x-btn-default:active {
  background: rgb(64, 64, 64);
}
.x-btn-default:active::after {
  border-width: 0;
}
.x-btn-primary {
  color: #0078d7;
  background: #0078d7;
}
.x-btn-primary::after {
  content: " ";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 2px solid #585858;
  border-color: #0078d7;
  border-color: #0078d7;
  border-width: 0;
  pointer-events: none;
}
.x-btn-primary:hover {
  color: rgb(77, 178, 241);
}
.x-btn-primary:hover::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 2px solid #585858;
  border-color: rgb(77, 178, 241);
}
.x-btn-primary:active {
  background: rgb(36, 148, 228);
}
.x-btn-primary:active::after {
  border-width: 0;
}
.x-btn-danger {
  color: #d03050;
  background: #d03050;
}
.x-btn-danger::after {
  content: " ";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 2px solid #585858;
  border-color: #d03050;
  border-color: #d03050;
  border-width: 0;
  pointer-events: none;
}
.x-btn-danger:hover {
  color: rgb(234, 128, 142);
}
.x-btn-danger:hover::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 2px solid #585858;
  border-color: rgb(234, 128, 142);
}
.x-btn-danger:active {
  background: rgb(221, 86, 109);
}
.x-btn-danger:active::after {
  border-width: 0;
}
.x-btn-warning {
  color: #f0a020;
  background: #f0a020;
}
.x-btn-warning::after {
  content: " ";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 2px solid #585858;
  border-color: #f0a020;
  border-color: #f0a020;
  border-width: 0;
  pointer-events: none;
}
.x-btn-warning:hover {
  color: rgb(255, 211, 115);
}
.x-btn-warning:hover::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 2px solid #585858;
  border-color: rgb(255, 211, 115);
}
.x-btn-warning:active {
  background: rgb(253, 190, 73);
}
.x-btn-warning:active::after {
  border-width: 0;
}
.x-btn-success {
  color: #18a058;
  background: #18a058;
}
.x-btn-success::after {
  content: " ";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 2px solid #585858;
  border-color: #18a058;
  border-color: #18a058;
  border-width: 0;
  pointer-events: none;
}
.x-btn-success:hover {
  color: rgb(87, 186, 127);
}
.x-btn-success:hover::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 2px solid #585858;
  border-color: rgb(87, 186, 127);
}
.x-btn-success:active {
  background: rgb(54, 173, 105);
}
.x-btn-success:active::after {
  border-width: 0;
}
.x-btn-default:not(.x-btn-ghost, .x-btn-dashed, .x-btn-link) {
  color: rgba(255, 255, 255, 0.9);
}
.x-btn-primary:not(.x-btn-ghost, .x-btn-dashed, .x-btn-link), .x-btn-success:not(.x-btn-ghost, .x-btn-dashed, .x-btn-link), .x-btn-danger:not(.x-btn-ghost, .x-btn-dashed, .x-btn-link), .x-btn-warning:not(.x-btn-ghost, .x-btn-dashed, .x-btn-link), .x-btn-info:not(.x-btn-ghost, .x-btn-dashed, .x-btn-link) {
  color: #fff;
}
.x-btn-default.x-btn-ghost, .x-btn-default.x-btn-dashed {
  color: gray;
  background: gray;
}
.x-btn-default.x-btn-ghost::after, .x-btn-default.x-btn-dashed::after {
  content: " ";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 2px solid #585858;
  border-color: gray;
  border-color: gray;
  border-width: 0;
  pointer-events: none;
}
.x-btn-default.x-btn-ghost:hover, .x-btn-default.x-btn-dashed:hover {
  color: rgb(154, 154, 154);
}
.x-btn-default.x-btn-ghost:hover::after, .x-btn-default.x-btn-dashed:hover::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 2px solid #585858;
  border-color: rgb(154, 154, 154);
}
.x-btn-default.x-btn-ghost:active, .x-btn-default.x-btn-dashed:active {
  background: rgb(141, 141, 141);
}
.x-btn-default.x-btn-ghost:active::after, .x-btn-default.x-btn-dashed:active::after {
  border-width: 0;
}
.x-btn-ghost, .x-btn-dashed {
  background: rgba(0, 0, 0, 0) !important;
}
.x-btn-ghost::after, .x-btn-dashed::after {
  border-width: 2px !important;
}
.x-btn-dashed::after {
  border-style: dashed !important;
}
.x-btn-default.x-btn-link {
  color: gray;
}
.x-btn-link {
  border: 0;
  background: transparent !important;
  cursor: pointer;
}
.x-btn-link:hover {
  color: rgb(178, 178, 178);
}
.x-btn-link:active {
  color: rgb(159, 159, 159);
}
.x-btn-link::after {
  border-width: 0 !important;
}
.x-btn-round {
  border-radius: 40px;
}
.x-btn-round::after {
  border-radius: inherit;
}
.x-btn-circle {
  width: 40px;
  height: 40px;
  padding: 0;
  text-align: center;
  border-radius: 50%;
}
.x-btn-circle::after {
  border-radius: inherit;
}
.x-btn-block {
  width: 100%;
}
.x-btn-disabled {
  opacity: 0.55;
  filter: grayscale(40%);
  pointer-events: none;
}
.x-btn-disabled > * {
  pointer-events: none;
}
.x-btn_icon {
  margin-right: 8px;
}
.x-btn-only-icon .x-btn_icon {
  margin-right: 0;
}

.x-input-search .x-input_addon:last-child {
  border: 0 !important;
  padding: 0;
}
.x-input-search-enter {
  border-right: 0 !important;
}
.x-input-search_enter {
  cursor: pointer;
}

.x-input {
  box-sizing: border-box;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-variant: tabular-nums;
  font-family: 微软雅黑;
  line-height: 1.5715;
  position: relative;
  display: inline-block;
  width: 100%;
  height: 32px;
  padding: 0 10px;
  border-radius: 0px;
  border: 2px rgba(255, 255, 255, 0.4) solid;
  display: flex;
  padding: 0;
}
.x-input:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(0, 0, 0, 0.6);
}
.x-input:active {
  border-color: rgba(255, 255, 255, 0.4);
}
.x-input-focus {
  border-color: #0078d7 !important;
}
.x-input-disabled {
  cursor: not-allowed;
  color: rgba(255, 255, 255, 0.4);
  background-color: rgba(255, 255, 255, 0.2);
  border-color: transparent;
  pointer-events: none;
  resize: unset;
}
.x-input-textarea {
  padding: 0;
  height: unset;
  resize: auto;
  overflow: auto;
}
.x-input-textarea .x-input_clear {
  align-self: flex-start;
  padding: 8px 0 8px 0;
  cursor: pointer;
}
.x-input textarea {
  width: 100%;
  height: 100%;
  padding: 4px 8px;
  border: 0;
  outline: 0;
  box-sizing: border-box;
  resize: none;
}
.x-input_addon {
  align-self: stretch;
  display: flex;
  align-items: center;
  background-color: rgb(32, 32, 32);
  padding: 0 10px;
}
.x-input_addon:first-child {
  border-right: 2px solid #585858;
}
.x-input_addon:last-child {
  border-left: 2px solid #585858;
}
.x-input-focus .x-input_addon {
  border-color: #0078d7;
}
.x-input_prefix, .x-input_suffix {
  display: flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
}
.x-input_prefix {
  margin-left: 10px;
  margin-right: -4px;
}
.x-input_suffix {
  margin-right: 10px;
  margin-left: -4px;
}
.x-input_clear {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 28px;
  user-select: none;
}
.x-input_clear:hover {
  color: #0078d7;
}
.x-input_clear:active {
  color: #fff;
  background: #0078d7;
}
.x-input_input {
  flex-grow: 1;
  width: 0;
  padding: 0 10px;
  border: 0;
  line-height: inherit;
  color: inherit;
  font-family: inherit;
  background: transparent;
  outline: 0;
}
.x-input_input::-webkit-input-placeholder {
  color: #a9a9a9;
  font-weight: lighter;
  font-family: inherit;
}
.x-input_separator {
  align-self: center;
}
.x-input-pair .x-input_input {
  text-align: center;
}

.x-tooltip {
  box-sizing: border-box;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-variant: tabular-nums;
  font-family: 微软雅黑;
  line-height: 1.5715;
  position: absolute;
  min-width: 30px;
  padding: 6px 8px;
  box-sizing: border-box;
  color: rgba(255, 255, 255, 0.9);
  background: #2b2b2b;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.65);
}
.x-tooltip-enter-from, .x-tooltip-leave-to {
  opacity: 0;
  transform: scale(0.8);
}
.x-tooltip-enter-active, .x-tooltip-leave-active {
  transition: all 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
}

.x-popover {
  box-sizing: border-box;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-variant: tabular-nums;
  font-family: 微软雅黑;
  line-height: 1.5715;
  position: absolute;
  color: rgba(255, 255, 255, 0.9);
  background-color: #2b2b2b;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.65);
}
.x-popover-title {
  min-width: 130px;
  padding: 8px 12px 6px;
  font-weight: 600;
  border-bottom: 1px solid hsl(0deg, 0%, 15%);
}
.x-popover-content {
  padding: 12px;
}

.x-virtual-list {
  position: relative;
  overflow: hidden;
}
.x-virtual-list_wrapper {
  position: relative;
}
.x-virtual-list_wrapper::-webkit-scrollbar {
  width: 4px;
  height: 0;
}
.x-virtual-list_wrapper::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.3);
}
.x-virtual-list_wrapper::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, 0);
}
.x-virtual-list_wrapper::-webkit-scrollbar-button {
  width: 0;
  height: 0;
}
.x-virtual-list_wrapper::-webkit-resizer {
  width: 0;
  height: 0;
}
.x-virtual-list_wrapper::-webkit-scrollbar-corner {
  width: 0;
  height: 0;
}
.x-virtual-list_wrapper::-webkit-scrollbar {
  transition: width 0.1s;
}
.x-virtual-list_wrapper::-webkit-scrollbar:hover {
  width: 12px !important;
  background-color: rgba(255, 255, 255, 0.1);
}
.x-virtual-list_wrapper::-webkit-scrollbar-track {
  transition: width 0.1s;
}
.x-virtual-list_item {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.x-virtual-list_scrollbar {
  position: absolute;
  width: 8px;
  top: 0;
  right: 0;
  bottom: 0;
}
.x-virtual-list_scrollbar-thumb {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  user-select: none;
}

.x-select {
  box-sizing: border-box;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-variant: tabular-nums;
  font-family: 微软雅黑;
  line-height: 1.5715;
  position: relative;
  display: inline-block;
  width: 100%;
}
.x-select_selector {
  display: flex;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  width: 100%;
  box-sizing: border-box;
  padding: 0 12px;
  border: 2px rgba(255, 255, 255, 0.4) solid;
}
.x-select_selector:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(0, 0, 0, 0.6);
}
.x-select_selector:active {
  border-color: rgba(255, 255, 255, 0.4);
}
.x-select_selector:active {
  background: rgba(255, 255, 255, 0.2);
}
.x-select-focus .x-select_selector {
  border-color: #0078d7;
}
.x-select-focus .x-select_text {
  color: rgba(255, 255, 255, 0.65);
}
.x-select-single .x-select_selector {
  height: 32px;
}
.x-select-multiple .x-select_selector {
  min-height: 32px;
}
.x-select-clear {
  position: absolute;
  top: 50%;
  right: 12px;
  padding: 8px;
  margin-right: -8px;
  transform: translateY(-50%);
  cursor: pointer;
}
.x-select-arrow {
  position: absolute;
  top: 50%;
  right: 12px;
  width: 10px;
  text-align: center;
  transform: translateY(-50%);
  pointer-events: none;
}
.x-select-filterable {
  cursor: text;
}
.x-select-listbox {
  padding: 4px 2px;
  border: 2px solid #141414;
  box-sizing: border-box;
  background-color: #202020;
  box-shadow: 0 5px 25px -7px rgba(0, 0, 0, 0.55);
}
.x-select-listbox-enter-active {
  transition: box-shadow 100ms linear;
}
.x-select-listbox-enter-from {
  box-shadow: 0 0 0 transparent;
}
.x-select-option {
  display: flex;
  align-items: center;
  padding: 0 10px;
  margin: 1px 0;
  min-height: 32px;
  cursor: default;
}
.x-select-option:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.x-select-option:active {
  background-color: rgba(255, 255, 255, 0.2);
}
.x-select-option-selected {
  background-color: rgba(0, 67, 139, 0.6);
}
.x-select-option-selected:hover {
  background-color: rgba(0, 67, 139, 0.8);
}
.x-select-option-disabled {
  opacity: 0.4;
  filter: grayscale(40%);
  pointer-events: none;
}
.x-select-disabled {
  pointer-events: none;
}
.x-select-disabled .x-select_selector {
  color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.2);
  border-color: transparent;
}
.x-select-placeholder {
  color: rgba(255, 255, 255, 0.65);
}
.x-select_tag {
  margin: 2px 4px 2px 0;
  margin-right: 4px;
}
.x-select_text {
  align-items: center;
}
.x-select_text::after {
  content: " ";
}
.x-select_search {
  flex: 1 0 30px;
}
.x-select_search_input {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  background: transparent;
  cursor: auto;
}
.x-select-multiple .x-select_search {
  flex-basis: 4px;
}
.x-select-single .x-select_search {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 12px;
  right: 12px;
}

.x-tag {
  box-sizing: border-box;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-variant: tabular-nums;
  font-family: 微软雅黑;
  line-height: 1.5715;
  display: inline-flex;
  align-items: center;
  flex-wrap: nowrap;
  padding: 0 8px;
}
.x-tag-small {
  min-height: 24px;
  font-size: 12px;
}
.x-tag-medium {
  min-height: 28px;
  font-size: 14px;
}
.x-tag-large {
  min-height: 34px;
  font-size: 16px;
}
.x-tag-round {
  border-radius: 34px;
}
.x-tag-default {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.2);
  border: 0 solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.12);
  border: 0 solid rgba(255, 255, 255, 0.3);
}
.x-tag-primary {
  color: #0078d7;
  background: rgba(0, 120, 215, 0.2);
  border: 0 solid rgba(0, 120, 215, 0.3);
}
.x-tag-info {
  color: #0078d7;
  background: rgba(0, 120, 215, 0.2);
  border: 0 solid rgba(0, 120, 215, 0.3);
}
.x-tag-success {
  color: #18a058;
  background: rgba(24, 160, 88, 0.2);
  border: 0 solid rgba(24, 160, 88, 0.3);
}
.x-tag-warning {
  color: #f0a020;
  background: rgba(240, 160, 32, 0.2);
  border: 0 solid rgba(240, 160, 32, 0.3);
}
.x-tag-error {
  color: #d03050;
  background: rgba(208, 48, 80, 0.2);
  border: 0 solid rgba(208, 48, 80, 0.3);
}
.x-tag-bordered {
  border-width: 1px;
}
.x-tag-nowrap {
  white-space: nowrap;
}
.x-tag-close-icon {
  margin-left: 4px;
  color: rgba(255, 255, 255, 0.65);
  cursor: pointer;
  user-select: none;
}

.x-switch {
  box-sizing: border-box;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-variant: tabular-nums;
  font-family: 微软雅黑;
  line-height: 1.5715;
  display: inline-flex;
  align-items: center;
  padding: 0;
  margin: 0;
  border: 0;
  cursor: default;
  background: transparent;
}
.x-switch:hover .x-switch_core {
  border-color: rgb(255, 255, 255);
}
.x-switch:hover .x-switch_core::after {
  background: rgb(255, 255, 255);
}
.x-switch_core {
  box-sizing: border-box;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-variant: tabular-nums;
  font-family: 微软雅黑;
  line-height: 1.5715;
  position: relative;
  display: inline-block;
  width: 44px;
  height: 20px;
  border: 2px #cccccc solid;
  border-radius: 20px;
  background: transparent;
}
.x-switch_core::after {
  content: " ";
  height: 10px;
  width: 10px;
  border-radius: 10px;
  position: absolute;
  left: 2px;
  top: 50%;
  background: #cccccc;
  transform: translate(0, -50%);
  transition: left 0.2s;
}
.x-switch-text {
  margin-left: 10px;
  line-height: 1;
}
.x-switch-checked:hover .x-switch_core {
  border-color: transparent;
  background: rgb(18, 133, 221);
}
.x-switch-checked:hover .x-switch_core::after {
  content: " ";
  background: #fff;
}
.x-switch-checked .x-switch_core {
  border-color: transparent;
  background: #0078d7;
}
.x-switch-checked .x-switch_core::after {
  content: " ";
  left: 28px;
  background: #fff;
}
.x-switch:active .x-switch_core {
  border-color: transparent;
  background: rgb(178, 178, 178);
}
.x-switch:active .x-switch_core::after {
  background: #fff;
}
.x-switch-disabled {
  opacity: 0.5;
  filter: grayscale(100%);
  pointer-events: none;
}
.x-switch-disabled .x-switch_core::after {
  background: rgb(204, 204, 204) !important;
}

.x-slider {
  box-sizing: border-box;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-variant: tabular-nums;
  font-family: 微软雅黑;
  line-height: 1.5715;
  position: relative;
  display: block;
  width: 100%;
  padding: 12px 0;
}
.x-slider::before {
  content: " ";
  position: absolute;
  left: 0;
  top: calc(50% - 1px);
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.4);
}
.x-slider:hover::before {
  background: rgba(255, 255, 255, 0.6);
}
.x-slider:active::before {
  background: rgba(255, 255, 255, 0.4);
}
.x-slider-marks {
  margin-bottom: 28px;
}
.x-slider-disabled {
  opacity: 0.6;
  pointer-events: none;
  filter: grayscale(100%);
}
.x-slider-disabled::before {
  background: rgb(64, 64, 64);
}
.x-slider_bar {
  position: absolute;
  height: 2px;
  margin-top: -1px;
  background: #0078d7;
  pointer-events: none;
}
.x-slider_marks {
  position: absolute;
  top: 24px;
  left: 0;
  right: 0;
}
.x-slider_mark {
  position: absolute;
  display: inline-block;
  cursor: pointer;
  transform: translateX(-50%);
  word-break: keep-all;
}
.x-slider_mark::after {
  content: " ";
  position: absolute;
  left: 50%;
  top: -6px;
  width: 1px;
  height: 4px;
  background: #8c8c8c;
}
.x-slider_steps {
  position: absolute;
  top: 50%;
  width: 100%;
  height: 100%;
  height: 0;
}
.x-slider_dot {
  position: absolute;
  height: 4px;
  width: 4px;
  transform: translate(-50%, -50%);
  background: rgb(140, 140, 140);
}
.x-slider_handle {
  position: absolute;
  top: 50%;
  width: 8px;
  height: 24px;
  border-radius: 8px;
  background: #0078d7;
  transform: translate(-50%, -50%);
  outline: 0;
}
.x-slider_handle:hover {
  background: rgb(122, 207, 253);
  z-index: 1;
}
.x-slider-tooltip {
  min-width: unset;
  padding: 2px 8px;
  font-size: 15px;
  border: 1px #333333 solid;
}

.x-checkbox {
  box-sizing: border-box;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-variant: tabular-nums;
  font-family: 微软雅黑;
  line-height: 1.5715;
  display: inline-flex;
  align-items: center;
  margin-right: 12px;
  white-space: nowrap;
  cursor: default;
}
.x-checkbox-group {
  display: inline-flex;
  flex-wrap: wrap;
}
.x-checkbox-group-vertical {
  flex-direction: column;
}
.x-checkbox-disabled {
  opacity: 0.6;
  filter: grayscale(100%);
  pointer-events: none;
}
.x-checkbox_input {
  width: 0;
  height: 0;
  padding: 0;
  margin: 0;
}
.x-checkbox_dot {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  border: 2px rgba(255, 255, 255, 0.8) solid;
  box-sizing: border-box;
  transform: translateZ(0);
}
.x-checkbox_label {
  display: inline-block;
  padding: 0 8px;
}
.x-checkbox_dot::after {
  content: " ";
  visibility: hidden;
}
.x-checkbox-checked .x-checkbox_dot {
  border-color: #0078d7;
}
.x-checkbox-checked .x-checkbox_dot::after {
  visibility: unset;
}
.x-checkbox:hover .x-checkbox_dot {
  border-color: #fff;
}
.x-checkbox:active .x-checkbox_dot {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.6);
  filter: grayscale(100%);
}
.x-checkbox_dot {
  font-size: 1.3em;
  color: #fff;
}
.x-checkbox_dot::after {
  content: "✔";
}
.x-checkbox-checked .x-checkbox_dot {
  border: 0;
  background: #0078d7;
}

.x-radio {
  box-sizing: border-box;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-variant: tabular-nums;
  font-family: 微软雅黑;
  line-height: 1.5715;
  display: inline-flex;
  align-items: center;
  margin-right: 12px;
  white-space: nowrap;
  cursor: default;
}
.x-radio-group {
  display: inline-flex;
  flex-wrap: wrap;
}
.x-radio-group-vertical {
  flex-direction: column;
}
.x-radio-disabled {
  opacity: 0.6;
  filter: grayscale(100%);
  pointer-events: none;
}
.x-radio_input {
  width: 0;
  height: 0;
  padding: 0;
  margin: 0;
}
.x-radio_dot {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  border: 2px rgba(255, 255, 255, 0.8) solid;
  box-sizing: border-box;
  transform: translateZ(0);
}
.x-radio_label {
  display: inline-block;
  padding: 0 8px;
}
.x-radio_dot::after {
  content: " ";
  visibility: hidden;
}
.x-radio-checked .x-radio_dot {
  border-color: #0078d7;
}
.x-radio-checked .x-radio_dot::after {
  visibility: unset;
}
.x-radio:not(.x-radio-checked):hover .x-radio_dot {
  border: 2px rgb(217, 217, 217) solid;
}
.x-radio:hover .x-radio_dot::after {
  background: rgb(217, 217, 217);
}
.x-radio:not(.x-radio-checked):active .x-radio_dot {
  border: 2px rgb(178, 178, 178) solid;
}
.x-radio:active .x-radio_dot {
  border: 2px rgb(178, 178, 178) solid;
  filter: grayscale(100%);
}
.x-radio:active .x-radio_dot::after {
  background: rgb(178, 178, 178);
}
.x-radio_dot {
  border-radius: 50%;
}
.x-radio_dot::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgb(191, 191, 191);
  transform: translate(-50%, -50%);
}

.x-checkbox {
  box-sizing: border-box;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-variant: tabular-nums;
  font-family: 微软雅黑;
  line-height: 1.5715;
  display: inline-flex;
  align-items: center;
  margin-right: 12px;
  white-space: nowrap;
  cursor: default;
}
.x-checkbox-group {
  display: inline-flex;
  flex-wrap: wrap;
}
.x-checkbox-group-vertical {
  flex-direction: column;
}
.x-checkbox-disabled {
  opacity: 0.6;
  filter: grayscale(100%);
  pointer-events: none;
}
.x-checkbox_input {
  width: 0;
  height: 0;
  padding: 0;
  margin: 0;
}
.x-checkbox_dot {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  border: 2px rgba(255, 255, 255, 0.8) solid;
  box-sizing: border-box;
  transform: translateZ(0);
}
.x-checkbox_label {
  display: inline-block;
  padding: 0 8px;
}
.x-checkbox_dot::after {
  content: " ";
  visibility: hidden;
}
.x-checkbox-checked .x-checkbox_dot {
  border-color: #0078d7;
}
.x-checkbox-checked .x-checkbox_dot::after {
  visibility: unset;
}
.x-checkbox:hover .x-checkbox_dot {
  border-color: #fff;
}
.x-checkbox:active .x-checkbox_dot {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.6);
  filter: grayscale(100%);
}
.x-checkbox_dot {
  font-size: 1.3em;
  color: #fff;
}
.x-checkbox_dot::after {
  content: "✔";
}
.x-checkbox-checked .x-checkbox_dot {
  border: 0;
  background: #0078d7;
}

.x-rate {
  box-sizing: border-box;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-variant: tabular-nums;
  font-family: 微软雅黑;
  line-height: 1.5715;
  display: inline-flex;
  font-size: 24px;
  user-select: none;
}
.x-rate_star {
  position: relative;
  cursor: pointer;
  color: rgb(64, 64, 64);
  white-space: nowrap;
  line-height: 1;
  vertical-align: middle;
  transition: transform 0.2s;
}
.x-rate_star:hover {
  transform: scale(1.2);
}
.x-rate_star-active {
  color: #0078d7;
}
.x-rate_star-half .x-rate_star_1 {
  color: #0078d7;
}
.x-rate_star_1 {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 50%;
  overflow: hidden;
  transition: color 0.3s;
  pointer-events: none;
}
.x-rate_star_2 {
  transition: color 0.3s;
  pointer-events: none;
}
.x-rate_star + .x-rate_star {
  margin-left: 8px;
}
.x-rate .x-icon {
  vertical-align: top;
}

.calendar-ain-enter-from, .calendar-ain-leave-to {
  opacity: 0;
  transform: scale(1.5);
}
.calendar-ain-enter-active, .calendar-ain-leave-active {
  transition: transform 0.3s, opacity 0.2s;
}

.x-calendar {
  box-sizing: border-box;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-variant: tabular-nums;
  font-family: 微软雅黑;
  line-height: 1.5715;
  box-sizing: border-box;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-variant: tabular-nums;
  font-family: 微软雅黑;
  line-height: 1.5715;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 4px 12px;
  width: 360px;
  height: 340px;
  background: rgb(32, 32, 32);
  user-select: none;
  overflow: hidden;
}
.x-calendar_container-scroll {
  flex: 1;
}
.x-calendar_container {
  height: 100%;
}
.x-calendar_grid {
  display: grid;
  margin-right: -2px;
}
.x-calendar_cell {
  position: relative;
  margin-bottom: 2px;
  margin-right: 2px;
  text-align: center;
  transition: color 400ms;
  cursor: default;
}
.x-calendar_cell:hover {
  outline: 2px solid rgba(140, 140, 140, 0.2);
  outline-offset: -2px;
}
.x-calendar_cell:active {
  outline-color: rgba(140, 140, 140, 0.5);
}
.x-calendar_cell-in-range {
  background: rgba(0, 120, 215, 0.15);
}
.x-calendar_cell-prev, .x-calendar_cell-next {
  color: rgba(255, 255, 255, 0.3);
}
.x-calendar_cell-selected {
  background: #0078d7;
  outline: 2px solid #000;
  outline-offset: -4px;
  color: #fff;
}
.x-calendar_cell-selected:hover {
  outline: 2px solid #000;
  outline-offset: -4px;
}
.x-calendar_cell-selected:active {
  outline-color: rgba(140, 140, 140, 0.5);
}
.x-calendar_cell-this {
  color: #0078d7;
  font-weight: bold;
  text-decoration: underline;
}
.x-calendar_cell-selected.x-calendar_cell-this {
  color: #fff;
}
.x-calendar_cell-disabled {
  color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}
.x-calendar_header {
  display: flex;
  align-items: center;
  font-size: 15px;
}
.x-calendar_header_title {
  flex: 1;
  padding-left: 12px;
  line-height: 40px;
  opacity: 0.8;
}
.x-calendar_header_title:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.02);
}
.x-calendar_header_title:active {
  opacity: 0.6;
}
.x-calendar_prev-btn, .x-calendar_next-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 40px;
  margin: 0 1px;
  font-size: 1.5em;
  text-align: center;
  opacity: 0.8;
  transform: translateZ(0);
}
.x-calendar_prev-btn:hover, .x-calendar_next-btn:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.02);
}
.x-calendar_prev-btn:active, .x-calendar_next-btn:active {
  opacity: 0.4;
}
.x-calendar_week {
  grid-template-columns: repeat(7, 1fr);
  font-size: 12px;
  font-weight: normal;
  text-align: center;
}
.x-calendar_weekday {
  height: 40px;
  line-height: 40px;
}
.x-calendar_cell {
  height: 40px;
  line-height: 40px;
}

.x-month-calendar {
  box-sizing: border-box;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-variant: tabular-nums;
  font-family: 微软雅黑;
  line-height: 1.5715;
  box-sizing: border-box;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-variant: tabular-nums;
  font-family: 微软雅黑;
  line-height: 1.5715;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 4px 12px;
  width: 360px;
  height: 340px;
  background: rgb(32, 32, 32);
  user-select: none;
  overflow: hidden;
}
.x-month-calendar_container-scroll {
  flex: 1;
}
.x-month-calendar_container {
  height: 100%;
}
.x-month-calendar_grid {
  display: grid;
  margin-right: -2px;
}
.x-month-calendar_cell {
  position: relative;
  margin-bottom: 2px;
  margin-right: 2px;
  text-align: center;
  transition: color 400ms;
  cursor: default;
}
.x-month-calendar_cell:hover {
  outline: 2px solid rgba(140, 140, 140, 0.2);
  outline-offset: -2px;
}
.x-month-calendar_cell:active {
  outline-color: rgba(140, 140, 140, 0.5);
}
.x-month-calendar_cell-in-range {
  background: rgba(0, 120, 215, 0.15);
}
.x-month-calendar_cell-prev, .x-month-calendar_cell-next {
  color: rgba(255, 255, 255, 0.3);
}
.x-month-calendar_cell-selected {
  background: #0078d7;
  outline: 2px solid #000;
  outline-offset: -4px;
  color: #fff;
}
.x-month-calendar_cell-selected:hover {
  outline: 2px solid #000;
  outline-offset: -4px;
}
.x-month-calendar_cell-selected:active {
  outline-color: rgba(140, 140, 140, 0.5);
}
.x-month-calendar_cell-this {
  color: #0078d7;
  font-weight: bold;
  text-decoration: underline;
}
.x-month-calendar_cell-selected.x-month-calendar_cell-this {
  color: #fff;
}
.x-month-calendar_cell-disabled {
  color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}
.x-month-calendar_header {
  display: flex;
  align-items: center;
  font-size: 15px;
}
.x-month-calendar_header_title {
  flex: 1;
  padding-left: 12px;
  line-height: 40px;
  opacity: 0.8;
}
.x-month-calendar_header_title:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.02);
}
.x-month-calendar_header_title:active {
  opacity: 0.6;
}
.x-month-calendar_prev-btn, .x-month-calendar_next-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 40px;
  margin: 0 1px;
  font-size: 1.5em;
  text-align: center;
  opacity: 0.8;
  transform: translateZ(0);
}
.x-month-calendar_prev-btn:hover, .x-month-calendar_next-btn:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.02);
}
.x-month-calendar_prev-btn:active, .x-month-calendar_next-btn:active {
  opacity: 0.4;
}
.x-month-calendar_cell {
  height: 65px;
  line-height: 65px;
}

.x-range-picker {
  box-sizing: border-box;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-variant: tabular-nums;
  font-family: 微软雅黑;
  line-height: 1.5715;
  position: relative;
  display: inline-block;
  width: 100%;
  height: 32px;
  padding: 0 10px;
  border-radius: 0px;
  border: 2px rgba(255, 255, 255, 0.4) solid;
  display: flex;
}
.x-range-picker:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(0, 0, 0, 0.6);
}
.x-range-picker:active {
  border-color: rgba(255, 255, 255, 0.4);
}
.x-range-picker-focus {
  border-color: #0078d7 !important;
}
.x-range-picker-disabled {
  cursor: not-allowed;
  color: rgba(255, 255, 255, 0.4);
  background-color: rgba(255, 255, 255, 0.2);
  border-color: transparent;
  pointer-events: none;
  resize: unset;
}
.x-range-picker-disabled {
  pointer-events: none;
}
.x-range-picker-popup {
  position: absolute;
  border: 1px rgba(88, 88, 88, 0.6) solid;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.65);
}
.x-range-picker_input {
  flex: 1;
  width: 0;
  padding: 0;
  border: 0;
  outline: 0;
  text-align: center;
  background: transparent;
}
.x-range-picker_separator {
  align-self: center;
}
.x-range-picker_clear {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 28px;
  user-select: none;
}
.x-range-picker_clear:hover {
  color: #0078d7;
}
.x-range-picker_clear:active {
  color: #fff;
  background: #0078d7;
}
.x-range-picker_icon {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 28px;
  user-select: none;
}
.x-range-picker_icon:hover {
  color: #0078d7;
}
.x-range-picker_icon:active {
  color: #fff;
  background: #0078d7;
}

.x-date-picker {
  box-sizing: border-box;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-variant: tabular-nums;
  font-family: 微软雅黑;
  line-height: 1.5715;
}
.x-date-picker-popup {
  position: absolute;
  border: 1px rgba(88, 88, 88, 0.6) solid;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.65);
}

.x-dropdown {
  box-sizing: border-box;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-variant: tabular-nums;
  font-family: 微软雅黑;
  line-height: 1.5715;
  position: absolute;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}
.x-dropdown-enter-active, .x-dropdown-leave-active {
  transition: none 0.3s cubic-bezier(0, 0.7, 0.5, 1);
  transition-property: opacity, max-height;
  overflow: hidden;
}
.x-dropdown-enter-active > :first-child, .x-dropdown-leave-active > :first-child {
  pointer-events: none;
}
.x-dropdown-leave-active {
  transition-duration: 0.15s;
}
.x-dropdown-enter-from, .x-dropdown-leave-to {
  opacity: 0;
}
.x-dropdown-has-bg {
  border: 2px solid #585858;
  border-width: 1px;
  background: rgb(32, 32, 32);
  box-shadow: 0 5px 25px -7px rgba(0, 0, 0, 0.55);
}
.x-dropdown-bottom {
  justify-content: flex-end;
}

.x-form {
  box-sizing: border-box;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-variant: tabular-nums;
  font-family: 微软雅黑;
  line-height: 1.5715;
}

.x-form-item {
  display: flex;
  margin-bottom: 24px;
}
.x-form-item-vertical {
  flex-direction: column;
  margin-bottom: 12px;
}
.x-form-item-vertical .x-form-item_label {
  justify-content: flex-start;
}
.x-form-item-required .x-form-item_label::before {
  content: "*";
  margin-right: 4px;
  font-family: SimSun, sans-serif;
  color: #d03050;
}
.x-form-item_label {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 80px;
  height: 32px;
  padding-right: 12px;
  box-sizing: border-box;
}
.x-form-item_wrapper {
  flex: 1;
}
.x-form-item_input {
  display: flex;
  align-items: center;
  min-height: 32px;
}
.x-form-item_feedback {
  color: #d03050;
}
.x-form-item_feedback_line {
  min-height: 24px;
}
.x-form-item_extra {
  color: rgba(255, 255, 255, 0.65);
}

.x-card {
  box-sizing: border-box;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-variant: tabular-nums;
  font-family: 微软雅黑;
  line-height: 1.5715;
  background: #1d1e1f;
}
.x-card-bordered {
  outline: 1px solid rgba(255, 255, 255, 0.08);
  outline-offset: -1px;
}
.x-card-hoverable {
  transition: all 0.3s;
}
.x-card-hoverable:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.65);
}
.x-card_cover {
  overflow: hidden;
}
.x-card_header {
  display: flex;
  align-items: center;
  padding: 8px 16px;
}
.x-card_header_extra {
  display: flex;
  align-items: center;
}
.x-card_icon {
  margin-right: 8px;
  font-size: 1.6em;
}
.x-card_title {
  flex: 1;
  font-weight: 600;
  font-size: 18px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.x-card_close {
  padding: 4px;
  font-size: 1.2em;
  opacity: 0.4;
  cursor: pointer;
}
.x-card_close:hover {
  opacity: 1;
  color: #fff;
  background: #d03050;
}
.x-card_close:active {
  opacity: 0.6;
}
.x-card_content {
  padding: 8px 16px 16px;
}
.x-card_footer {
  padding: 8px 16px;
  border-top: 1px solid hsl(0deg, 0%, 15%);
}

.x-message-container {
  box-sizing: border-box;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-variant: tabular-nums;
  font-family: 微软雅黑;
  line-height: 1.5715;
  position: fixed;
  top: 16px;
  right: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 0;
  z-index: 999;
}

.x-message {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  padding: 8px 20px;
  border: 2px solid #585858;
  border-width: 1px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.65);
  background: rgb(32, 32, 32);
}
.x-message-move, .x-message-enter-active, .x-message-leave-active {
  transition: all 0.4s;
}
.x-message-enter-from, .x-message-leave-to {
  opacity: 0;
  transform: scale(0.75) translateY(10px);
}
.x-message-leave-to {
  transform: scale(0.75) translateY(-10px);
}
.x-message-leave-active {
  position: absolute;
}
.x-message-info .x-message_icon {
  color: #0078d7;
}
.x-message-success .x-message_icon {
  color: #18a058;
}
.x-message-error .x-message_icon {
  color: #d03050;
}
.x-message-warning .x-message_icon {
  color: #f0a020;
}
.x-message-loading .x-message_icon {
  color: #0078d7;
}
.x-message_icon {
  margin-right: 8px;
}
.x-message_content {
  display: flex;
  align-items: center;
}
.x-message_close {
  display: flex;
  align-items: center;
  margin-left: 6px;
}

.x-notification-container {
  box-sizing: border-box;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-variant: tabular-nums;
  font-family: 微软雅黑;
  line-height: 1.5715;
  position: fixed;
  bottom: 16px;
  right: 24px;
  user-select: none;
  z-index: 998;
}

.x-notification {
  display: flex;
  flex-direction: column;
  width: 364px;
  margin-top: 16px;
  box-sizing: border-box;
  background: rgb(32, 32, 32);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.65);
}
.x-notification:active {
  transform: scale(0.98);
  transition: transform 0.1s;
}
.x-notification-move, .x-notification-enter-active, .x-notification-leave-active {
  transition: all 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.x-notification-enter-from {
  opacity: 0;
  transform: translateX(100%);
}
.x-notification-leave-to {
  opacity: 0;
  transform: translate(50%, -100%);
}
.x-notification-leave-active {
  position: absolute;
}
.x-notification_header {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 16px;
}
.x-notification_title {
  padding-right: 16px;
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.x-notification_close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 16px 16px 0 0;
  opacity: 0.4;
}
.x-notification_close:hover {
  opacity: 1;
}
.x-notification_description {
  font-size: 16px;
  color: rgb(185, 185, 185);
}
.x-notification_meta {
  font-size: 12px;
  color: rgb(185, 185, 185);
}

.x-modal {
  position: relative;
  top: 20%;
  margin: 0 auto auto;
  outline: 1px solid #0c77cb;
  box-shadow: 1px 1px 25px -10px #000;
}
.x-modal-container {
  box-sizing: border-box;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-variant: tabular-nums;
  font-family: 微软雅黑;
  line-height: 1.5715;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: auto;
  background-color: transparent;
  transition: background-color 1.3s;
  z-index: 1;
}
.x-modal-mask {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.x-modal-mask.show {
  background: rgba(0, 0, 0, 0.2);
}
.x-modal-enter-active, .x-modal-leave-active {
  transition: all 0.3s cubic-bezier(0.3, 0.3, 0.3, 1);
}
.x-modal-enter-from, .x-modal-leave-to {
  opacity: 0;
  transform: scale(0.9);
}
.x-modal_icon-info {
  color: #0078d7;
}
.x-modal_icon-check {
  color: #0078d7;
}
.x-modal_body {
  overflow: auto;
}
.x-modal_body::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
.x-modal_body::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.3);
}
.x-modal_body::-webkit-scrollbar-track {
  background-color: rgba(255, 255, 255, 0.1);
}
.x-modal_body::-webkit-scrollbar-button {
  width: 0;
  height: 0;
}
.x-modal_body::-webkit-resizer {
  width: 0;
  height: 0;
}
.x-modal_body::-webkit-scrollbar-corner {
  width: 0;
  height: 0;
}
.x-modal_cancel, .x-modal_ok {
  min-width: 86px;
}
.x-modal-btns {
  margin-top: 8px;
}

.x-table {
  box-sizing: border-box;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-variant: tabular-nums;
  font-family: 微软雅黑;
  line-height: 1.5715;
  display: flex;
  flex-direction: column;
  background: #222222;
}
.x-table-bordered .x-table_header {
  margin-bottom: -19px;
}
.x-table-bordered .x-table_header,
.x-table-bordered .x-table_body {
  border: 2px #222222 solid;
}
.x-table-bordered .x-table_td,
.x-table-bordered .x-table_th {
  border-right: 2px #222222 solid;
}
.x-table-bordered .x-table_td:last-child,
.x-table-bordered .x-table_th:last-child {
  border-right: 0;
}
.x-table-bottom-bordered .x-table_td,
.x-table-bottom-bordered .x-table_th {
  border-bottom: 2px #222222 solid;
}
.x-table-bottom-bordered .x-table_tr:last-child .x-table_td,
.x-table-bottom-bordered .x-table_tr:last-child .x-table_th {
  border-bottom: 0;
}
.x-table_table {
  width: 100%;
  table-layout: fixed;
  border-spacing: 0;
  box-sizing: border-box;
}
.x-table_header {
  width: 100%;
  box-sizing: border-box;
  overflow: auto;
}
.x-table_header::-webkit-scrollbar {
  width: 8px;
  height: 0;
}
.x-table_header::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.3);
}
.x-table_header::-webkit-scrollbar-track {
  background-color: rgba(255, 255, 255, 0.1);
}
.x-table_header::-webkit-scrollbar-button {
  width: 0;
  height: 0;
}
.x-table_header::-webkit-resizer {
  width: 0;
  height: 0;
}
.x-table_header::-webkit-scrollbar-corner {
  width: 0;
  height: 0;
}
.x-table_body {
  flex: 1;
  overflow: overlay;
}
.x-table_body::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
.x-table_body::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.3);
}
.x-table_body::-webkit-scrollbar-track {
  background-color: rgba(255, 255, 255, 0.1);
}
.x-table_body::-webkit-scrollbar-button {
  width: 0;
  height: 0;
}
.x-table_body::-webkit-resizer {
  width: 0;
  height: 0;
}
.x-table_body::-webkit-scrollbar-corner {
  width: 0;
  height: 0;
}
.x-table_tr,
.x-table tr {
  box-sizing: border-box;
}
.x-table_td, .x-table_th,
.x-table td,
.x-table th {
  padding: 16px 12px;
  text-align: left;
  word-wrap: break-word;
  word-break: break-word;
  overflow-wrap: break-word;
  box-sizing: border-box;
}
.x-table_td-fix-left, .x-table_th-fix-left,
.x-table td-fix-left,
.x-table th-fix-left {
  position: sticky;
}
.x-table_td-fix-left-last, .x-table_th-fix-left-last,
.x-table td-fix-left-last,
.x-table th-fix-left-last {
  box-shadow: inset -10px 0 10px -10px rgba(0, 0, 0, 0.65);
}
.x-table_td-fix-right, .x-table_th-fix-right,
.x-table td-fix-right,
.x-table th-fix-right {
  position: sticky;
}
.x-table_td-fix-right-first, .x-table_th-fix-right-first,
.x-table td-fix-right-first,
.x-table th-fix-right-first {
  box-shadow: inset 10px 0 10px -10px rgba(0, 0, 0, 0.65);
}
.x-table_td-align-center, .x-table_th-align-center,
.x-table td-align-center,
.x-table th-align-center {
  text-align: center;
}
.x-table_td-align-right, .x-table_th-align-right,
.x-table td-align-right,
.x-table th-align-right {
  text-align: right;
}
.x-table_th,
.x-table th {
  background: #212121;
}
.x-table_td,
.x-table td {
  background: #171717;
}

.x-code {
  display: block;
  overflow: auto;
  font-family: Consolas;
}
.x-code.hljs {
  padding: 6px 8px;
  background: transparent;
}
.x-code pre {
  margin: 0;
  font-family: inherit;
}

.x-blockquote {
  margin: 12px 0;
  padding: 0 0 0 12px;
  border-left: 4px solid rgb(32, 32, 32);
}
.x-blockquote p:first-child {
  margin-top: 0;
}
.x-blockquote p:last-child {
  margin-bottom: 0;
}

.x-space {
  display: flex;
}
.x-space::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
.x-space::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.3);
}
.x-space::-webkit-scrollbar-track {
  background-color: rgba(255, 255, 255, 0.1);
}
.x-space::-webkit-scrollbar-button {
  width: 0;
  height: 0;
}
.x-space::-webkit-resizer {
  width: 0;
  height: 0;
}
.x-space::-webkit-scrollbar-corner {
  width: 0;
  height: 0;
}
.x-space-wrap {
  flex-wrap: wrap;
}
.x-space-vertical {
  flex-direction: column;
}
.x-space_item {
  padding: 4px 0;
}
.x-space-vertical > .x-space_item {
  padding: 0;
}

.x-h1 {
  margin: 8px 0 20px;
}
.x-h2, .x-h3, .x-h4, .x-h5, .x-h6 {
  margin: 1.6em 0 0.6em;
}
.x-ul, .x-ol {
  padding: 0;
  margin: 0;
}
.x-ul li, .x-ol li {
  margin-left: 20px;
  margin-top: 0.3em;
}
.x-p {
  margin: 16px 0;
}
.x-p:first-child {
  margin-top: 0;
}
.x-a {
  color: #0078d7;
  text-decoration-color: #0078d7;
}
.x-simple-table {
  border: 0;
  border-spacing: 0;
  border-collapse: collapse;
  text-align: left;
  overflow-x: auto;
}
@media screen and (max-width: 426px) {
  .x-simple-table {
    table-layout: fixed;
    width: 100%;
  }
}
.x-simple-table th,
.x-simple-table td {
  padding: 12px;
  border: 0 solid #222222;
  border-bottom-width: 1px;
}
.x-simple-table th:first-child,
.x-simple-table td:first-child {
  border-left-width: 1px;
}
.x-simple-table th:last-child,
.x-simple-table td:last-child {
  border-right-width: 1px;
}
.x-simple-table th {
  border-top-width: 1px;
  background: #212121;
}
.x-simple-table td {
  background: #171717;
}

.x-drawer {
  box-sizing: border-box;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-variant: tabular-nums;
  font-family: 微软雅黑;
  line-height: 1.5715;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
}
.x-drawer_wrapper {
  position: absolute;
  right: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  background: rgb(32, 32, 32);
  transition: transform 0.5s cubic-bezier(0.23, 0.85, 0.13, 1);
  pointer-events: all;
}
.x-drawer_header {
  padding: 12px 16px;
}
.x-drawer_title {
  font-size: 20px;
}
.x-drawer_body {
  flex: 1 1;
  padding: 12px 16px;
  overflow: overlay;
}
.x-drawer_body::-webkit-scrollbar {
  width: 4px;
  height: 8px;
}
.x-drawer_body::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.3);
}
.x-drawer_body::-webkit-scrollbar-track {
  background-color: rgba(255, 255, 255, 0.1);
}
.x-drawer_body::-webkit-scrollbar-button {
  width: 0;
  height: 0;
}
.x-drawer_body::-webkit-resizer {
  width: 0;
  height: 0;
}
.x-drawer_body::-webkit-scrollbar-corner {
  width: 0;
  height: 0;
}
.x-drawer_footer {
  padding: 12px 16px;
}
.x-drawer_mask {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: all;
}
.x-drawer-open > .x-drawer_wrapper {
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  transform: translateX(0);
}
.x-drawer-glass > .x-drawer_wrapper {
  background: rgba(32, 32, 32, 0.85);
  backdrop-filter: blur(38px);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}

body > .x-drawer {
  position: fixed;
}

.x-progress-status-default .x-progress_rail {
  background: #333333;
}
.x-progress-status-default .x-progress_fill {
  background: #0078d7;
}
.x-progress-status-default .x-progress_text {
  color: rgba(255, 255, 255, 0.9);
}

.x-progress-status-success .x-progress_rail {
  background: #333333;
}
.x-progress-status-success .x-progress_fill {
  background: #18a058;
}
.x-progress-status-success .x-progress_text {
  color: #18a058;
}

.x-progress-status-warning .x-progress_rail {
  background: #333333;
}
.x-progress-status-warning .x-progress_fill {
  background: #f0a020;
}
.x-progress-status-warning .x-progress_text {
  color: #f0a020;
}

.x-progress-status-error .x-progress_rail {
  background: #333333;
}
.x-progress-status-error .x-progress_fill {
  background: #d03050;
}
.x-progress-status-error .x-progress_text {
  color: #d03050;
}

.x-progress {
  box-sizing: border-box;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-variant: tabular-nums;
  font-family: 微软雅黑;
  line-height: 1.5715;
  width: 100%;
  display: flex;
  align-items: center;
}
.x-progress_text {
  min-width: 2em;
  height: unset;
  margin-left: 8px;
  line-height: inherit;
  text-align: left;
  white-space: nowrap;
}
.x-progress_rail {
  flex: 1;
}
.x-progress_fill {
  box-sizing: border-box;
  text-align: right;
  transition: background 0.4s, width 0.4s;
}
.x-progress_fill .x-progress_text {
  margin: 0 8px;
  color: #000;
}

.x-image {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
}
.x-image_img {
  width: 100%;
  height: 100%;
  min-width: inherit;
  min-height: inherit;
  line-height: 0;
}
.x-image_placeholder {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgb(32, 32, 32);
  color: rgba(255, 255, 255, 0.9);
}
.x-image_error {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  min-width: inherit;
  min-height: inherit;
  background: rgb(32, 32, 32);
  color: rgba(255, 255, 255, 0.9);
}

.x-tabs_nav {
  box-sizing: border-box;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-variant: tabular-nums;
  font-family: 微软雅黑;
  line-height: 1.5715;
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  overflow: overlay;
}
.x-tabs_nav::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
.x-tabs_nav::-webkit-scrollbar-thumb {
  background-color: transparent;
}
.x-tabs_nav::-webkit-scrollbar-track {
  background-color: transparent;
}
.x-tabs_nav::-webkit-scrollbar-button {
  width: 0;
  height: 0;
}
.x-tabs_nav::-webkit-resizer {
  width: 0;
  height: 0;
}
.x-tabs_nav::-webkit-scrollbar-corner {
  width: 0;
  height: 0;
}
.x-tabs_nav:hover::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
.x-tabs_nav:hover::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.05);
}
.x-tabs_nav:hover::-webkit-scrollbar-track {
  background-color: transparent;
}
.x-tabs_nav:hover::-webkit-scrollbar-button {
  width: 0;
  height: 0;
}
.x-tabs_nav:hover::-webkit-resizer {
  width: 0;
  height: 0;
}
.x-tabs_nav:hover::-webkit-scrollbar-corner {
  width: 0;
  height: 0;
}
.x-tabs-bar > .x-tabs_nav .x-tabs_tab, .x-tabs-line > .x-tabs_nav .x-tabs_tab {
  min-width: 2em;
  padding: 6px 0;
  margin: 4px 0;
  text-align: center;
}
.x-tabs-bar > .x-tabs_nav .x-tabs_tab + .x-tabs_tab, .x-tabs-line > .x-tabs_nav .x-tabs_tab + .x-tabs_tab {
  margin-left: 24px;
}
.x-tabs-bar > .x-tabs_nav .x-tabs_tab-active, .x-tabs-line > .x-tabs_nav .x-tabs_tab-active {
  color: #0078d7;
}
.x-tabs-bar > .x-tabs_nav .x-tabs_bar, .x-tabs-line > .x-tabs_nav .x-tabs_bar {
  bottom: 0;
  height: 2px;
}
.x-tabs-line > .x-tabs_nav::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: hsl(0deg, 0%, 15%);
}
.x-tabs-segment > .x-tabs_nav {
  padding: 0 3px;
  background: rgba(255, 255, 255, 0.1);
}
.x-tabs-segment > .x-tabs_nav .x-tabs_tab {
  display: flex;
  justify-content: center;
  flex-grow: 1;
  padding: 8px 16px;
  z-index: 1;
}
.x-tabs-segment > .x-tabs_nav .x-tabs_bar {
  top: 3px;
  bottom: 3px;
  background: rgba(255, 255, 255, 0.1);
  transition: left 0.2s, width 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.65);
}
.x-tabs-card > .x-tabs_nav, .x-tabs-border-card > .x-tabs_nav {
  border: 1px rgba(255, 255, 255, 0.08) solid;
  border-bottom-width: 0;
  background: rgba(255, 255, 255, 0.1);
}
.x-tabs-card > .x-tabs_nav .x-tabs_tab, .x-tabs-border-card > .x-tabs_nav .x-tabs_tab {
  padding: 8px 16px;
}
.x-tabs-card > .x-tabs_nav .x-tabs_tab-active, .x-tabs-border-card > .x-tabs_nav .x-tabs_tab-active {
  color: #0078d7;
  background: rgba(255, 255, 255, 0.05);
}
.x-tabs-card > .x-tabs_nav .x-tabs_bar, .x-tabs-border-card > .x-tabs_nav .x-tabs_bar {
  display: none;
}
.x-tabs-border-card {
  border: 1px rgba(255, 255, 255, 0.08) solid;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.65);
}
.x-tabs-border-card > .x-tabs_nav {
  border: none;
}
.x-tabs-border-card > .x-tab-pane {
  padding: 8px 12px;
}
.x-tabs_tab {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  cursor: default;
}
.x-tabs_bar {
  position: absolute;
  background: #0078d7;
  transition: left 0.4s, width 0.4s;
}
.x-tabs .x-tab-pane {
  padding-top: 12px;
}

.x-window {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-sizing: border-box;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-variant: tabular-nums;
  font-family: 微软雅黑;
  line-height: 1.5715;
  background: #000;
  box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.2), -1px -1px 5px rgba(0, 0, 0, 0.1);
}
.x-window:focus {
  border-color: #0078d7;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.25), -1px -1px 5px rgba(0, 0, 0, 0.15);
  outline: 0;
}
.x-window-default .x-window_header {
  color: rgba(255, 255, 255, 0.65);
}
.x-window-default:focus .x-window_header {
  color: #fff;
  background: #0078d7;
}
.x-window-simple .x-window_header {
  color: rgba(255, 255, 255, 0.65);
}
.x-window-simple .x-window_title {
  color: rgba(255, 255, 255, 0.9);
}
.x-window-simple:focus .x-window_header {
  color: rgba(255, 255, 255, 0.9);
}
.x-window-fullscreen {
  position: fixed;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  border-width: 0;
  z-index: 1;
}
.x-window_header {
  display: flex;
  align-items: center;
  width: 100%;
  height: 32px;
  font-size: 12px;
  z-index: 1;
}
.x-window_title {
  margin: 0 8px;
  cursor: default;
}
.x-window_suffix {
  flex: 1;
}
.x-window_operation {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 46px;
  height: 100%;
  font-size: 14px;
}
.x-window_operation:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}
.x-window_operation:active {
  background: rgba(255, 255, 255, 0.2);
}
.x-window_close:hover {
  background: #f5222d;
}
.x-window_close:active {
  background: rgba(245, 34, 45, 0.6);
}
.x-window_body {
  position: relative;
  flex: 1;
  overflow: auto;
}
.x-window_body::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
.x-window_body::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.3);
}
.x-window_body::-webkit-scrollbar-track {
  background-color: rgba(255, 255, 255, 0.1);
}
.x-window_body::-webkit-scrollbar-button {
  width: 0;
  height: 0;
}
.x-window_body::-webkit-resizer {
  width: 0;
  height: 0;
}
.x-window_body::-webkit-scrollbar-corner {
  width: 0;
  height: 0;
}
.x-menu {
  box-sizing: border-box;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-variant: tabular-nums;
  font-family: 微软雅黑;
  line-height: 1.5715;
  background: rgb(32, 32, 32);
  cursor: default;
  transition: width 0.3s cubic-bezier(0, 1, 0.29, 1);
}
.x-menu::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
.x-menu::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.3);
}
.x-menu::-webkit-scrollbar-track {
  background-color: rgba(255, 255, 255, 0.1);
}
.x-menu::-webkit-scrollbar-button {
  width: 0;
  height: 0;
}
.x-menu::-webkit-resizer {
  width: 0;
  height: 0;
}
.x-menu::-webkit-scrollbar-corner {
  width: 0;
  height: 0;
}
.x-menu-vertical {
  width: 320px;
}
.x-menu-inline {
  width: 320px;
}
.x-menu-horizontal {
  display: flex;
}
.x-menu-vertical .x-menu-item-content {
  padding: 0 16px;
}
.x-menu-vertical .x-menu-item-content_arrow {
  width: 24px;
  height: 24px;
  transform: rotateZ(-90deg);
}
.x-menu-horizontal .x-menu-item-content {
  padding: 0 16px;
}
.x-menu-horizontal .x-menu-item-content_icon {
  width: unset;
  height: unset;
  margin-right: 8px;
}
.x-menu-horizontal .x-menu-item-content_arrow {
  width: unset;
  height: unset;
  margin-left: 8px;
}
.x-menu-collapsed {
  width: 48px;
}

.x-menu-item {
  position: relative;
}
.x-menu-item-selected {
  background: rgba(51, 51, 51, 0.4);
}
.x-menu-item-selected::after {
  content: " ";
  position: absolute;
  top: 50%;
  left: 0;
  width: 4px;
  height: 24px;
  transform: translateY(-50%);
  background: #0078d7;
}
.x-menu-item-content {
  position: relative;
  display: flex;
  align-items: center;
  height: 48px;
}
.x-menu-item-content:hover {
  background: rgb(51, 51, 51);
}
.x-menu-item-content:active {
  background: rgb(83, 83, 83);
}
.x-menu-item-content-active {
  color: #0078d7;
}
.x-menu-item-content-disabled {
  opacity: 0.5;
  pointer-events: none;
}
.x-menu-item-content_icon {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  font-size: 1.2em;
}
.x-menu-item-content_label {
  flex: 1 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.x-menu-item-content_arrow {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
}
.x-menu-item-content a {
  text-decoration: none;
  color: inherit;
}
.x-menu-item-content a::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.x-submenu {
  position: relative;
  background: rgb(32, 32, 32);
  cursor: default;
}
.x-submenu-popup {
  position: absolute;
  min-width: 160px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.65);
}
.x-submenu-popup .x-menu-item-content {
  padding: 0 16px;
}
.x-submenu-popup .x-menu-item-content_icon {
  width: unset;
  height: unset;
  margin-right: 8px;
}
.x-submenu-popup .x-menu-item-content_arrow {
  width: unset;
  height: unset;
  margin-left: 8px;
}
.x-submenu-popup .x-menu-item-group_label {
  padding: 0 16px;
}
.x-menu-item-group {
  background: rgb(32, 32, 32);
  cursor: default;
}
.x-menu-item-group_label {
  position: relative;
  display: flex;
  align-items: center;
  height: 36px;
  font-size: 0.85em;
  color: rgba(255, 255, 255, 0.65);
  overflow: hidden;
}
.x-menu-item-group_label::after {
  content: " ";
  display: block;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: rgb(51, 51, 51);
}

.x-anchor {
  box-sizing: border-box;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-variant: tabular-nums;
  font-family: 微软雅黑;
  line-height: 1.5715;
  position: relative;
}
.x-anchor-show-background .x-anchor_bar {
  background: rgba(0, 120, 215, 0.2);
}
.x-anchor-rail {
  padding-left: 4px;
}
.x-anchor-block .x-anchor_bar::after {
  display: none;
}
.x-anchor_rail {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  background: rgba(255, 255, 255, 0.2);
}
.x-anchor_bar {
  position: absolute;
  left: 0;
  transform: translateY(-50%);
  transition: top 0.15s, width 0.15s, height 0.15s;
}
.x-anchor_bar::after {
  content: "";
  display: block;
  width: 4px;
  height: 100%;
  background: #0078d7;
}

.x-anchor-link-active {
  color: #0078d7;
}
.x-anchor-link_title {
  display: block;
  padding: 4px 12px;
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}
.x-anchor-link_title:hover {
  color: #0b93ff;
}
.x-anchor-link_title:active {
  color: #006abe;
}

.expand-transition-enter-from, .expand-transition-leave-to {
  opacity: 0;
  margin: 0 !important;
}
.expand-transition-enter-active, .expand-transition-leave-active {
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0, 0.98, 0.43, 1);
}

.x-reveal-effect {
  --x-reveal-bc: rgba(191, 191, 191, 0.75);
  --x-reveal-bgc: rgba(191, 191, 191, 0.2);
}

.x-skeleton {
  position: relative;
}
.x-skeleton-item {
  box-sizing: border-box;
  background-color: rgba(255, 255, 255, 0.12);
}
.x-skeleton-item-ref {
  user-select: none;
  pointer-events: none;
  opacity: 0;
}

.x-skeleton-animated .x-skeleton-item {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 25%, rgba(255, 255, 255, 0.12) 37%, rgba(255, 255, 255, 0.1) 63%);
  background-size: 400% 100%;
  animation: x-skeleton-loading 1.4s ease infinite;
}

@keyframes x-skeleton-loading {
  0% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0 50%;
  }
}
.x-acrylic {
  --x-acrylic-bgc: rgba(191, 191, 191, 0.75);
}