table {
  width: 100%;
  table-layout: fixed;
}
body.no-select {
  user-select: none;
}
body.e-resize {
  cursor: e-resize;
}
body.s-resize {
  cursor: s-resize;
}
[data-draggable] {
  cursor: move;
}
.relative {
  position: relative;
}
.inherit {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}
.inline-block {
  display: inline-block;
}
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.flex-row {
  display: flex;
  align-items: center;
}
.flex-column {
  display: flex;
  flex-direction: column;
}
.flex-1 {
  flex: 1;
}
.ellipsis {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.n-primary-color {
  color: #0c6fff;
}
.n-success-color {
  color: #27c000;
}
.n-warning-color {
  color: #ff6b00;
}
.n-danger-color {
  color: #ee2e14;
}
.n-drop-down-enter-active {
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.n-drop-down-enter {
  opacity: 0;
  transform: translateY(-20px);
}
.top-slide-enter-active,
.top-slide-leave-active {
  transition: transform 0.2s ease;
}
.top-slide-enter,
.top-slide-leave-to {
  transform: translateY(-100%);
}
.bottom-slide-enter-active,
.bottom-slide-leave-active {
  transition: transform 0.2s ease;
}
.bottom-slide-enter,
.bottom-slide-leave-to {
  transform: translateY(100%);
}
.right-slide-enter-active,
.right-slide-leave-active {
  transition: transform 0.2s ease;
}
.right-slide-enter,
.right-slide-leave-to {
  transform: translateX(100%);
}
.left-slide-enter-active,
.left-slide-leave-active {
  transition: transform 0.2s ease;
}
.left-slide-enter,
.left-slide-leave-to {
  transform: translateX(-100%);
}
.n-opacity-enter-active,
.n-opacity-leave-active {
  transition: opacity 0.3s ease;
}
.n-opacity-enter,
.n-opacity-leave-to {
  opacity: 0;
}
.n-opacity-s-enter-active,
.n-opacity-s-leave-active {
  transition: opacity 0.1s ease;
}
.n-opacity-s-enter,
.n-opacity-s-leave-to {
  opacity: 0;
}
.hide-right-enter-active,
.hide-right-leave-active {
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.hide-right-enter,
.hide-right-leave-to {
  transform: translateX(100%);
  opacity: 0;
}
.hide-left-enter-active,
.hide-left-leave-active {
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.hide-left-enter,
.hide-left-leave-to {
  transform: translateX(-100%);
  opacity: 0;
}
@-moz-keyframes n-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes n-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-o-keyframes n-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes n-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.n-small-scrollbar {
  overflow: auto;
}
.n-small-scrollbar::-webkit-scrollbar {
  width: 4px;
}
.n-small-scrollbar::-webkit-scrollbar-track {
  background-color: #fff;
}
.n-small-scrollbar::-webkit-scrollbar-thumb {
  border-radius: 2px;
  background-color: #cccfd3;
}
.n-alert {
  display: flex;
  padding: 8px 12px;
  color: #031333;
}
.n-alert-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  margin-right: 4px;
  height: 24px;
}
.n-alert-closable {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  margin-left: 8px;
  color: #9aa1ad;
  height: 24px;
  cursor: pointer;
}
.n-alert-wrapper {
  flex: 1;
}
.n-alert-title {
  line-height: 24px;
  font-size: 16px;
  font-weight: 500;
}
.n-alert-content {
  white-space: pre-wrap;
  line-height: 24px;
  font-size: 13px;
}
.n-alert-type-info {
  background: #d7e8fc;
  border-color: #bbdfff;
}
.n-alert-type-info .n-alert-icon {
  color: #1776f2;
}
.n-alert-type-info .n-alert-closable:hover {
  color: #1776f2;
}
.n-alert-type-success {
  background: #ebfae8;
  border-color: #d9f6d5;
}
.n-alert-type-success .n-alert-icon {
  color: #23a609;
}
.n-alert-type-success .n-alert-closable:hover {
  color: #23a609;
}
.n-alert-type-warning {
  background: #fff3e0;
  border-color: #ffe3b9;
}
.n-alert-type-warning .n-alert-icon {
  color: #ff6b00;
}
.n-alert-type-warning .n-alert-closable:hover {
  color: #ff6b00;
}
.n-alert-type-error {
  background: #fbeaed;
  border-color: #ffdee3;
}
.n-alert-type-error .n-alert-icon {
  color: #ee2e14;
}
.n-alert-type-error .n-alert-closable:hover {
  color: #ee2e14;
}
.n-alert-border-rect {
  border-width: 1px;
  border-style: solid;
  border-radius: 4px;
}
.n-alert-size-small {
  padding: 2px 6px;
}
.n-alert-size-small .n-alert-title {
  font-size: 15px;
}
.n-alert-size-small .n-alert-content {
  font-size: 12px;
}
.n-alert-size-small .n-alert-title + .n-alert-content {
  margin-top: -4px;
}
.n-alert .n-note {
  font-size: 13px;
  line-height: 24px;
}
.n-butterfly {
  overflow: hidden;
}
.n-butterfly .butterflies-arrow {
  display: none;
}
.n-butterfly .butterflie-circle-endpoint {
  display: none;
}
.n-butterfly .butterflies-link {
  stroke: #cdd0d6;
}
.n-btn {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  outline: 0;
  user-select: none;
  background-image: none;
  touch-action: manipulation;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  border: 1px solid transparent;
  transition: color 0.2s linear, background-color 0.2s linear, border 0.2s linear;
/** loading **/
}
.n-btn-radius {
  border-radius: 4px;
}
.n-btn-mini {
  padding: 1px 6px;
  font-size: 12px;
  line-height: 20px;
}
.n-btn-mini.n-btn-circle {
  border-radius: 12px;
}
.n-btn-small {
  padding: 3px 7px;
  font-size: 12px;
  line-height: 20px;
}
.n-btn-small.n-btn-circle {
  border-radius: 14px;
}
.n-btn-middle {
  padding: 5px 15px;
  font-size: 12px;
  line-height: 20px;
}
.n-btn-middle.n-btn-circle {
  border-radius: 16px;
}
.n-btn-large {
  padding: 7px 23px;
  font-size: 14px;
  line-height: 24px;
}
.n-btn-large.n-btn-circle {
  border-radius: 20px;
}
.n-btn.tight {
  padding-left: 7px;
  padding-right: 7px;
}
.n-btn.long {
  width: 100%;
}
.n-btn-primary {
  color: #fff;
  background-color: #0c6fff;
  border-color: #0c6fff;
}
.n-btn-primary.hover,
.n-btn-primary:hover,
.n-btn-primary:focus-visible {
  color: #fff;
  background-color: #3c8bff;
  border-color: #3c8bff;
}
.n-btn-primary.active,
.n-btn-primary:active {
  color: #fff;
  background-color: #0958cc;
  border-color: #0958cc;
}
.n-btn-primary[disabled] {
  color: #fff;
  background-color: #cee2ff;
  border-color: #cee2ff;
}
.n-btn-primary.outline {
  color: #0c6fff;
  background-color: #fff;
  border-color: #0c6fff;
}
.n-btn-primary.outline.hover,
.n-btn-primary.outline:hover,
.n-btn-primary.outline:focus-visible {
  color: #3c8bff;
  background-color: #fff;
  border-color: #3c8bff;
}
.n-btn-primary.outline.active,
.n-btn-primary.outline:active {
  color: #0958cc;
  background-color: #fff;
  border-color: #0958cc;
}
.n-btn-primary.outline[disabled] {
  color: #cee2ff;
  background-color: #fff;
  border-color: #cee2ff;
}
.n-btn-primary.outline.loading circle {
  stroke: #0c6fff;
}
.n-btn-success {
  color: #fff;
  background-color: #27c000;
  border-color: #27c000;
}
.n-btn-success.hover,
.n-btn-success:hover,
.n-btn-success:focus-visible {
  color: #fff;
  background-color: #52cc33;
  border-color: #52cc33;
}
.n-btn-success.active,
.n-btn-success:active {
  color: #fff;
  background-color: #1f9900;
  border-color: #1f9900;
}
.n-btn-success[disabled] {
  color: #fff;
  background-color: #d3f2cc;
  border-color: #d3f2cc;
}
.n-btn-success.outline {
  color: #27c000;
  background-color: #fff;
  border-color: #27c000;
}
.n-btn-success.outline.hover,
.n-btn-success.outline:hover,
.n-btn-success.outline:focus-visible {
  color: #52cc33;
  background-color: #fff;
  border-color: #52cc33;
}
.n-btn-success.outline.active,
.n-btn-success.outline:active {
  color: #1f9900;
  background-color: #fff;
  border-color: #1f9900;
}
.n-btn-success.outline[disabled] {
  color: #d3f2cc;
  background-color: #fff;
  border-color: #d3f2cc;
}
.n-btn-success.outline.loading circle {
  stroke: #27c000;
}
.n-btn-warning {
  color: #fff;
  background-color: #ff6b00;
  border-color: #ff6b00;
}
.n-btn-warning.hover,
.n-btn-warning:hover,
.n-btn-warning:focus-visible {
  color: #fff;
  background-color: #f83;
  border-color: #f83;
}
.n-btn-warning.active,
.n-btn-warning:active {
  color: #fff;
  background-color: #c50;
  border-color: #c50;
}
.n-btn-warning[disabled] {
  color: #fff;
  background-color: #ffe1cc;
  border-color: #ffe1cc;
}
.n-btn-warning.outline {
  color: #ff6b00;
  background-color: #fff;
  border-color: #ff6b00;
}
.n-btn-warning.outline.hover,
.n-btn-warning.outline:hover,
.n-btn-warning.outline:focus-visible {
  color: #f83;
  background-color: #fff;
  border-color: #f83;
}
.n-btn-warning.outline.active,
.n-btn-warning.outline:active {
  color: #c50;
  background-color: #fff;
  border-color: #c50;
}
.n-btn-warning.outline[disabled] {
  color: #ffe1cc;
  background-color: #fff;
  border-color: #ffe1cc;
}
.n-btn-warning.outline.loading circle {
  stroke: #ff6b00;
}
.n-btn-danger {
  color: #fff;
  background-color: #ee2e14;
  border-color: #ee2e14;
}
.n-btn-danger.hover,
.n-btn-danger:hover,
.n-btn-danger:focus-visible {
  color: #fff;
  background-color: #f15743;
  border-color: #f15743;
}
.n-btn-danger.active,
.n-btn-danger:active {
  color: #fff;
  background-color: #be2410;
  border-color: #be2410;
}
.n-btn-danger[disabled] {
  color: #fff;
  background-color: #fbd5d0;
  border-color: #fbd5d0;
}
.n-btn-danger.outline {
  color: #ee2e14;
  background-color: #fff;
  border-color: #ee2e14;
}
.n-btn-danger.outline.hover,
.n-btn-danger.outline:hover,
.n-btn-danger.outline:focus-visible {
  color: #f15743;
  background-color: #fff;
  border-color: #f15743;
}
.n-btn-danger.outline.active,
.n-btn-danger.outline:active {
  color: #be2410;
  background-color: #fff;
  border-color: #be2410;
}
.n-btn-danger.outline[disabled] {
  color: #fbd5d0;
  background-color: #fff;
  border-color: #fbd5d0;
}
.n-btn-danger.outline.loading circle {
  stroke: #ee2e14;
}
.n-btn-default {
  color: #161616;
  background-color: #fff;
  border-color: #cccfd3;
}
.n-btn-default.hover,
.n-btn-default:hover,
.n-btn-default:focus-visible {
  color: #0c6fff;
  background-color: #fff;
  border-color: #0c6fff;
}
.n-btn-default.active,
.n-btn-default:active {
  color: #0958cc;
  background-color: #fff;
  border-color: #0958cc;
}
.n-btn-default[disabled] {
  color: #d0d0d0;
  background-color: #fff;
  border-color: #f4f5f6;
}
.n-btn-text.hover,
.n-btn-link.hover,
.n-btn-text:hover,
.n-btn-link:hover,
.n-btn-text:focus-visible,
.n-btn-link:focus-visible {
  color: #0c6fff;
  background-color: #f0f3f6;
  border-color: #f0f3f6;
}
.n-btn-text.active,
.n-btn-link.active,
.n-btn-text:active,
.n-btn-link:active {
  color: #0958cc;
  background-color: #f0f3f6;
  border-color: #f0f3f6;
}
.n-btn-text {
  color: #313233;
  background-color: #fff;
  border-color: #fff;
}
.n-btn-text[disabled] {
  color: #d5d6d6;
  background-color: #fff;
  border-color: #fff;
}
.n-btn-link {
  color: #0c6fff;
  background-color: transparent;
  border-color: transparent;
}
.n-btn-link[disabled] {
  color: #cee2ff;
  background-color: transparent;
  border-color: transparent;
}
.n-btn-text-plus {
  color: #1776f2;
  background-color: transparent;
  border-color: transparent;
}
.n-btn-text-plus.hover,
.n-btn-text-plus:hover,
.n-btn-text-plus:focus-visible {
  color: #fff;
  background-color: #1776f2;
  border-color: transparent;
}
.n-btn-text-plus.active,
.n-btn-text-plus:active {
  color: #fff;
  background-color: #1750b2;
  border-color: transparent;
}
.n-btn-text-plus[disabled] {
  color: #d0e3fc;
  background-color: transparent;
  border-color: transparent;
}
.n-btn[disabled],
.n-btn-loading {
  cursor: default;
}
.n-btn-i {
  font-size: 16px;
  width: 16px;
  line-height: 12px;
}
.n-btn-i-prefix {
  margin-right: 4px;
}
.n-btn-i-suffix {
  margin-left: 4px;
}
.n-btn-i:only-child {
  margin: 0;
}
.n-btn.loading {
  position: relative;
}
.n-btn.loading span,
.n-btn.loading .n-btn-i {
  opacity: 0;
  visibility: hidden;
}
.n-btn-default .circle,
.n-btn-link .circle,
.n-btn-text .circle {
  stroke: #cccfd3 !important;
}
.n-btn-group {
  display: inline-block;
  white-space: nowrap;
  overflow: visible;
}
.n-btn-group .n-btn:hover,
.n-btn-group .n-btn:focus-visible {
  color: #0c6fff;
}
.n-btn-group-default .n-btn + .n-btn {
  margin-left: -1px;
}
.n-btn-group-default .n-btn.active {
  position: relative;
  z-index: 1;
}
.n-btn-group-default > .n-btn {
  border-radius: 0;
  color: #161616;
  background-color: #fff;
  border-color: #cccfd3;
}
.n-btn-group-default > .n-btn:first-child {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.n-btn-group-default > .n-btn:last-child {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.n-btn-group-default > .n-btn.active {
  color: #fff;
  background-color: #0c6fff;
  border-color: #0c6fff;
}
.n-btn-group-default.outline > .n-btn.active {
  color: #0c6fff;
  background-color: #fff;
  border-color: #0c6fff;
}
.n-btn-group-primary > .n-btn {
  color: #161616;
  background-color: #fff;
  border-color: #fff;
}
.n-btn-group-primary > .n-btn.active {
  color: #fff;
  background-color: #0c6fff;
  border-color: #0c6fff;
}
.n-btn-group-primary.circle {
  background-color: #f9f9f9;
  border-radius: 16px;
}
.n-btn-group-primary.circle > .n-btn {
  border-radius: 16px;
  background-color: transparent;
}
.n-btn-group-primary.circle > .n-btn.active {
  background-color: #0c6fff;
}
.n-btn-group-primary.outline > .n-btn.active {
  color: #0c6fff;
  background-color: #fff;
  border-color: #0c6fff;
}
.n-calendar-th {
  font-size: 14px;
  line-height: 22px;
  color: #919293;
  text-align: center;
  padding: 8px 0;
}
.n-calendar-td {
  font-size: 14px;
  line-height: 22px;
  text-align: center;
  vertical-align: middle;
}
.n-changer {
  display: inline-block;
  white-space: nowrap;
}
.n-changer-btn {
  position: relative;
  min-width: 36px;
  border-radius: 0;
  vertical-align: middle;
}
.n-changer-btn:hover,
.n-changer-btn.active {
  z-index: 1;
}
.n-changer-btn + .n-changer-btn {
  margin-left: -1px;
}
.n-changer-btn:first-child {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.n-changer-btn:last-of-type {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.n-changer-btn[disabled].active {
  color: #6b9ae0;
  border-color: #0958cc;
}
i.n-changer-icon {
  margin-left: 6px;
  vertical-align: middle;
}
.n-chart-box {
  font-size: 12px;
  min-width: 120px;
  text-align: center;
  color: #161616;
}
.n-chart-box-title {
  font-weight: bold;
  border-bottom: 1px solid #eee;
  margin-bottom: 4px;
  padding-bottom: 4px;
}
.n-chat-history {
  overflow: auto;
}
.n-chat-history-trigger {
  color: #919293;
  min-height: 32px;
}
.n-checkbox,
.n-radio {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  white-space: nowrap;
  color: #161616;
  vertical-align: middle;
  font-size: 12px;
  line-height: 20px;
  user-select: none;
}
.n-checkbox-label,
.n-radio-label {
  margin-left: 8px;
}
.n-checkbox-disabled,
.n-radio-disabled {
  cursor: default;
  color: #919293;
}
.n-checkbox-group .n-checkbox,
.n-radio-group .n-radio {
  margin-right: 22px;
}
.n-checkbox-icon .transition,
.n-radio-icon .transition {
  transition: fill 0.1s ease-in;
}
.n-checkbox-icon .tick {
  fill: #fff;
}
.n-checkbox-icon .border {
  fill: #cccfd3;
}
.n-checkbox-icon .bg {
  fill: #fff;
}
.n-checkbox-icon.hover .tick {
  fill: #fff;
}
.n-checkbox-icon.hover .border {
  fill: #0c6fff;
}
.n-checkbox-icon.hover .bg {
  fill: #fff;
}
.n-checkbox-icon.active .tick {
  fill: #fff;
}
.n-checkbox-icon.active .border {
  fill: #0c6fff;
}
.n-checkbox-icon.active .bg {
  fill: #0c6fff;
}
.n-checkbox-icon.active.hover .tick {
  fill: #fff;
}
.n-checkbox-icon.active.hover .border {
  fill: #3c8bff;
}
.n-checkbox-icon.active.hover .bg {
  fill: #3c8bff;
}
.n-checkbox-icon.indeterminate .tick {
  fill: #0c6fff;
}
.n-checkbox-icon.indeterminate .border {
  fill: #0c6fff;
}
.n-checkbox-icon.indeterminate .bg {
  fill: #fff;
}
.n-checkbox-icon.indeterminate.hover .tick {
  fill: #3c8bff;
}
.n-checkbox-icon.indeterminate.hover .border {
  fill: #3c8bff;
}
.n-checkbox-icon.indeterminate.hover .bg {
  fill: #fff;
}
.n-checkbox-icon.disabled .tick {
  fill: #fff;
}
.n-checkbox-icon.disabled .border {
  fill: #cccfd3;
}
.n-checkbox-icon.disabled .bg {
  fill: #f0f3f6;
}
.n-checkbox-icon.active.disabled .tick,
.n-checkbox-icon.indeterminate.disabled .tick {
  fill: #cccfd3;
}
.n-checkbox-icon.active.disabled .border,
.n-checkbox-icon.indeterminate.disabled .border {
  fill: #cccfd3;
}
.n-checkbox-icon.active.disabled .bg,
.n-checkbox-icon.indeterminate.disabled .bg {
  fill: #f0f3f6;
}
.n-radio-icon .tick {
  fill: #fff;
}
.n-radio-icon .border {
  fill: #cccfd3;
}
.n-radio-icon .bg {
  fill: #fff;
}
.n-radio-icon.hover .tick {
  fill: #fff;
}
.n-radio-icon.hover .border {
  fill: #0c6fff;
}
.n-radio-icon.hover .bg {
  fill: #fff;
}
.n-radio-icon.active .tick {
  fill: #0c6fff;
}
.n-radio-icon.active .border {
  fill: #0c6fff;
}
.n-radio-icon.active .bg {
  fill: #fff;
}
.n-radio-icon.active.hover .tick {
  fill: #3c8bff;
}
.n-radio-icon.active.hover .border {
  fill: #3c8bff;
}
.n-radio-icon.active.hover .bg {
  fill: #fff;
}
.n-radio-icon.disabled .tick {
  fill: #fff;
}
.n-radio-icon.disabled .border {
  fill: #cccfd3;
}
.n-radio-icon.disabled .bg {
  fill: #f0f3f6;
}
.n-radio-icon.active.disabled .tick {
  fill: #cccfd3;
}
.n-radio-icon.active.disabled .border {
  fill: #cccfd3;
}
.n-radio-icon.active.disabled .bg {
  fill: #f0f3f6;
}
.n-circle {
  display: inline-block;
  position: relative;
}
.n-color-picker .n-form-value {
  display: flex;
  align-items: center;
}
.n-color-picker-rect {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  border-radius: 2px;
  border: 1px solid rgba(0,0,0,0.1);
  flex-shrink: 0;
}
.n-color-paster {
  padding: 16px !important;
}
.n-color-paster-box {
  gap: 8px;
  width: 227px;
  display: flex;
  flex-wrap: wrap;
}
.n-color-paster-box-item {
  width: 18px;
  height: 18px;
  cursor: pointer;
  border-radius: 2px;
  border: 1px solid rgba(0,0,0,0.1);
}
.n-color-paster-block {
  margin-top: 16px;
}
.n-color-paster-icon {
  cursor: pointer;
  margin-right: auto;
}
.n-color-paster-opacity {
  width: 190px;
  height: 10px;
  background-image: linear-gradient(45deg, #ccc 25%, transparent 25%), linear-gradient(-45deg, #ccc 25%, transparent 25%), linear-gradient(45deg, transparent 75%, #ccc 75%), linear-gradient(-45deg, transparent 75%, #ccc 75%);
  background-position: 0 0, 0 3px, 3px -3px, -3px 0px;
  background-size: 6px 6px;
  border-radius: 5px;
  position: relative;
  cursor: pointer;
}
.n-color-paster-opacity-bar {
  border-radius: 5px;
  pointer-events: none;
}
.n-color-paster-opacity-slider {
  width: 14px;
  height: 14px;
  position: absolute;
  top: -2px;
  margin-left: -7px;
  border: 2px solid #fff;
  box-shadow: rgba(0,0,0,0.2) 0px 1px 4px 0px;
  border-radius: 50%;
  pointer-events: none;
}
.n-color-paster-input {
  outline: none;
  width: 36px;
  height: 24px;
  padding: 5px 0;
  text-align: center;
  border: 1px solid #cccfd3;
  transition: border-color 0.2s ease;
}
.n-color-paster-input + .n-color-paster-input {
  margin-left: -1px;
}
.n-color-paster-input[name="r"] {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  margin-left: 13px;
}
.n-color-paster-input[name="a"] {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  padding-right: 10px;
  width: 46px;
}
.n-color-paster-input:hover {
  z-index: 1;
  border-color: #a1abb3;
}
.n-color-paster-input:focus {
  z-index: 2;
  border-color: #0c6fff;
}
.n-color-paster-input-percent {
  z-index: 3;
  color: #a1abb3;
  position: relative;
  pointer-events: none;
  transform: translateX(-14px);
}
.n-color-paster-history {
  padding: 8px 0;
  border-top: 1px solid #ddd;
}
.n-date-changer-filter {
  display: inline-flex;
}
.n-date-changer-filter .n-btn-primary {
  z-index: 1;
}
.n-date-changer-filter .n-btn-middle {
  padding-top: 3px;
  padding-bottom: 3px;
}
.n-date-changer-filter .n-btn-small {
  padding-top: 1px;
  padding-bottom: 1px;
}
.n-date-changer-filter .n-changer + .n-date-filter {
  margin-left: 8px;
}
.n-date-filter .n-filter-value {
  max-width: unset;
}
.n-date-picker-footer {
  padding: 8px 16px 0;
  border-top: 1px solid #e2e6ec;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.n-date-picker-footer .n-btn-primary {
  margin-left: 16px;
  padding: 1px 7px;
}
.n-date-picker-option {
  font-size: 13px;
  line-height: 24px;
  cursor: pointer;
  color: #919293;
  margin-left: 16px;
}
.n-date-picker-option.active,
.n-date-picker-option:hover {
  color: #0c6fff;
}
.n-drawer {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  width: 364px;
  z-index: 600;
  background-color: #fff;
  box-shadow: -4px 8px 16px 0px rgba(0,0,0,0.2);
}
.n-drawer-header {
  font-size: 16px;
  line-height: 24px;
  color: #031333;
  height: 52px;
  justify-content: space-between;
  padding: 0 16px;
  z-index: 1;
  transition: box-shadow 0.15s ease;
}
.n-drawer-content {
  overflow: auto;
}
.n-drawer-footer {
  z-index: 1;
  height: 64px;
  padding: 0 16px;
  justify-content: flex-end;
  transition: box-shadow 0.15s ease;
}
.n-drawer.has-scroll-top .n-drawer-header {
  box-shadow: 0 2px 4px 0 rgba(0,0,0,0.2);
}
.n-drawer.has-scroll-bottom .n-drawer-footer {
  box-shadow: 0 -2px 4px 0 rgba(0,0,0,0.2);
}
.n-drop-menu {
  display: inline-block;
}
.n-drop-menu > .n-per-reference > .n-btn .ni-drop-down {
  transition: transform 0.1s ease;
}
.n-drop-menu > .n-per-reference > .n-btn.active .ni-drop-down {
  transform: rotate(180deg);
}
.n-editor,
.n-editor-preview {
  font-size: 14px;
  line-height: 1.6em;
}
.n-editor img,
.n-editor-preview img {
  max-width: 100%;
}
.n-editor {
  display: flex;
  flex-direction: column;
}
div.n-file-picker {
  display: block;
  width: 100%;
  cursor: pointer;
}
div.n-file-upload {
  display: block;
  width: 100%;
  cursor: pointer;
}
.n-files-picker .n-loading-bar {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
}
.n-filter {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: flex-start;
  column-gap: 8px;
  row-gap: 10px;
}
.n-filter-border {
  display: inline-flex;
  align-items: center;
  position: relative;
  transition: border 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  border-radius: 4px;
  background-color: #fff;
  border: 1px solid #cccfd3;
  cursor: pointer;
}
.n-filter-border-disabled {
  cursor: default;
  background-color: #f0f3f6;
}
.n-filter-border-available:hover {
  border-color: #a1abb3;
}
.n-filter-border-focus,
.n-filter-border-focus:hover {
  border-color: #0c6fff;
}
.n-filter-border:focus-visible {
  outline: none;
  border-color: #0c6fff;
}
.n-filter-value {
  outline: 0;
  border: none;
  color: #1776f2;
  border-radius: 4px;
  display: block;
  background-image: none;
  background-color: transparent;
  font-size: 12px;
  line-height: 20px;
  font-weight: bold;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin-left: 4px;
  max-width: 160px;
}
.n-filter-value-shrink {
  flex-shrink: 0;
}
.n-filter-value-label {
  max-width: unset;
  margin-right: 4px;
  font-weight: normal;
  color: #161616;
}
.n-filter-value-multiple {
  padding: 0 4px;
  border-radius: 10px;
  background-color: #e8f1fe;
}
.n-filter-value-disabled {
  cursor: default;
}
.n-filter-value-uppercase {
  text-transform: uppercase;
}
.n-filter-value-text + .n-filter-value-text:before {
  content: ' ~ ';
  color: #313233;
}
.n-filter-value .ni-less-than,
.n-filter-value .ni-more-than {
  font-size: 14px;
  margin-right: 3px;
  vertical-align: bottom;
}
.n-filter-icon {
  width: 16px;
  font-size: 16px;
  line-height: 16px;
  margin-left: 4px;
}
.n-input-filter-range {
  color: #9aa1ad;
  flex-shrink: 0;
}
.n-input-filter-info {
  margin-top: 8px;
  color: #687185;
  display: flex;
  align-items: center;
  font-size: 12px;
  line-height: 20px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.n-input-filter-info .n-icon {
  margin-right: 4px;
}
.n-filter-border-small {
  height: 24px;
  padding: 1px 3px 1px 0;
}
.n-filter-border-small .n-filter-value-label {
  margin-right: 0;
}
.n-filter-border-middle {
  height: 28px;
  padding: 3px 7px 3px 3px;
}
.n-filter-border-large {
  height: 32px;
  padding: 5px 7px 5px 3px;
}
.n-form {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  align-content: flex-start;
}
.n-form-list-1 > .n-form-patch,
.n-form-list-1 > .n-form-item {
  width: 100%;
}
.n-form-list-2 > .n-form-patch,
.n-form-list-2 > .n-form-item {
  width: 50%;
}
.n-form-list-3 > .n-form-patch,
.n-form-list-3 > .n-form-item {
  width: 33.33%;
}
.n-form-list-4 > .n-form-patch,
.n-form-list-4 > .n-form-item {
  width: 25%;
}
.n-form-list-5 > .n-form-patch,
.n-form-list-5 > .n-form-item {
  width: 20%;
}
.n-form-patch {
  flex: auto;
}
.n-form-patch-break {
  width: 100%;
}
.n-form-patch-line {
  height: 24px;
  width: 100%;
}
.n-form-item.w-25 {
  width: 25%;
}
.n-form-item.w-33 {
  width: 33.33%;
}
.n-form-item.w-50 {
  width: 50%;
}
.n-form-item.w-66 {
  width: 66.66%;
}
.n-form-item.w-75 {
  width: 75%;
}
.n-form-item.w-100 {
  width: 100%;
}
.n-form-item.minimum {
  flex: none;
  min-width: unset !important;
}
.n-form-item {
  flex: auto;
  width: 100%;
  display: inline-flex;
  align-items: flex-start;
}
.n-form-item-spacing {
  margin-bottom: 16px;
}
.n-form-item-split {
  margin: auto 0;
  height: 20px;
  border-left: 1px solid #cccfd3;
}
.n-form-label {
  flex-shrink: 0;
  font-size: 12px;
  min-height: 20px;
  padding-right: 10px;
  display: flex;
  align-items: center;
  color: #191919;
  text-align: right;
}
.n-form-label-small {
  height: 28px;
}
.n-form-label-middle {
  height: 32px;
}
.n-form-label-large {
  height: 42px;
}
.n-form-label-required {
  font-size: 14px;
  color: #ec3751;
}
.n-form-label-text {
  width: 100%;
  font-size: 12px;
  line-height: 16px;
  white-space: pre-wrap;
}
.n-form-label .n-form-tip-icon {
  vertical-align: middle;
  margin-left: 4px;
}
.n-form-item-top {
  flex-direction: column;
}
.n-form-item-top .n-form-label {
  width: 100%;
  padding-left: 10px;
  position: relative;
  text-align: left;
  height: 20px;
}
.n-form-item-top .n-form-label-required {
  position: absolute;
  left: -4px;
}
.n-form-item-top .n-form-label-text {
  white-space: normal;
  width: unset;
}
.n-form-item-top .n-form-content {
  width: unset;
}
.n-form-content {
  width: 0;
  flex: auto;
  display: flex;
  align-self: stretch;
  flex-direction: column;
  position: relative;
}
.n-form-item-border {
  width: 100%;
  display: flex;
  position: relative;
  transition: border 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.n-form-item-border > div.n-form-border {
  border-radius: 0;
  width: 100%;
}
.n-form-item-border > div.n-form-border-focus {
  z-index: 1;
  box-shadow: 0 0 0 1px #0c6fff;
}
.n-form-item-border > div:first-child {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.n-form-item-border > div:last-child {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.n-form-item-border.n-form-item-border-transparent,
.n-form-item-border.n-form-item-border-transparent > div {
  border-radius: 0;
  border-color: transparent;
}
.n-form-item.transparent .n-form-border-disabled {
  background-color: transparent;
}
.n-form-info {
  font-size: 12px;
  line-height: 20px;
  display: flex;
  align-items: center;
  color: #bfbfbf;
  height: 24px;
  transition: height 0.2s ease;
  overflow: hidden;
}
.n-form-info-active {
  height: 24px;
}
.n-form-info .n-icon {
  font-size: 14px;
  margin-right: 4px;
}
.n-form-info-error {
  color: #ee2e14;
}
.n-form-info-enter,
.n-form-info-leave-to {
  height: 0;
}
.n-form-border-info-error.n-form-item-border-transparent {
  background-color: #fcf0f2;
}
.n-form-suffix {
  align-self: stretch;
  display: flex;
  align-items: center;
  padding: 0 8px;
}
.n-form-border-rect .n-form-suffix {
  background-color: #f1f3f5;
  border-left: 1px solid #caccd4;
}
.n-form-item-border-small > .n-radio-group,
.n-form-item-border-small > .n-checkbox-group,
.n-form-item-border-small > .n-switch-btn,
.n-form-item-border-small > .n-rate {
  margin: 4px 0;
}
.n-form-item-border-middle > .n-radio-group,
.n-form-item-border-middle > .n-checkbox-group,
.n-form-item-border-middle > .n-switch-btn,
.n-form-item-border-middle > .n-rate {
  margin: 6px 0;
}
.n-form-item-border-large > .n-radio-group,
.n-form-item-border-large > .n-checkbox-group,
.n-form-item-border-large > .n-switch-btn,
.n-form-item-border-large > .n-rate {
  margin: 11px 0;
}
.n-form-item-border-transparent .n-switch {
  font-size: 0;
  margin-left: 8px;
}
.n-form-hidden {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  cursor: pointer;
  opacity: 0;
  margin: 0;
}
.n-form-hidden:focus-visible + .n-checkbox-icon .border {
  fill: #0c6fff;
}
.n-form-hidden:focus-visible + .n-radio-icon {
  outline: 1px dashed #0c6fff;
  outline-offset: 1px;
}
.n-form-hidden:focus-visible + .n-switch-point {
  outline: 1px solid #0c6fff;
  outline-offset: -3px;
}
.n-form-border {
  cursor: pointer;
  position: relative;
  transition: border 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.n-form-border:focus-visible {
  outline: none;
  border-color: #0c6fff;
}
.n-form-border-none:focus-visible {
  border-radius: 4px;
  outline: 1px solid #0c6fff;
}
.n-form-border-line {
  background-color: #fff;
  border-bottom: 1px solid #cccfd3;
}
.n-form-border-rect {
  border-radius: 4px;
  background-color: #fff;
  border: 1px solid #cccfd3;
}
.n-form-border-disabled {
  cursor: default;
}
.n-form-border-available:hover {
  border-color: #a1abb3;
}
.n-form-border-focus,
.n-form-border-focus:hover {
  border-color: #0c6fff;
}
.n-form-border-info-error,
.n-form-border-info-error:hover {
  border-color: #ee2e14;
}
.n-form-border-disabled:not(.n-form-border-none) {
  background-color: #f0f3f6;
}
.n-form-border-rect > .n-form-border-disabled {
  background-color: #f0f3f6;
}
.n-form-value {
  outline: 0;
  border: none;
  color: #161616;
  border-radius: 4px;
  display: block;
  background-image: none;
  background-color: transparent;
}
.n-form-value-placeholder,
.n-form-value::placeholder {
  color: #919293;
}
.n-form-value-multiple {
  padding-top: 3px;
  padding-bottom: 0;
}
.n-form-value-ellipsis {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.n-form-value-picker {
  cursor: pointer;
}
.n-form-value-disabled {
  cursor: default;
}
.n-form-value-uppercase {
  text-transform: uppercase;
}
.n-form-value-text + .n-form-value-text:before {
  content: ' ~ ';
}
.n-form-border-multiple.n-form-border-disabled {
  cursor: default;
}
.n-form-icon {
  top: 50%;
  right: 0;
  width: 26px;
  font-size: 16px;
  line-height: 26px;
  position: absolute;
  transform: translateY(-50%);
}
.n-form-border-multiple {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: flex-start;
  padding: 3px 26px 0 5px;
}
.n-form-refer {
  cursor: text;
  max-width: 100%;
  font-size: 12px;
  line-height: 16px;
  margin: 0 4px 3px 0;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  transition: all 0.2s ease;
  border: 1px solid #e5e6eb;
  color: #161616;
}
.n-form-refer.clickable {
  cursor: pointer;
}
.n-form-refer-placeholder,
.n-form-refer-search {
  flex: auto;
  font-size: 12px;
  line-height: 20px;
  padding: 0;
  margin: 0 4px 3px 0;
  outline: 0;
  border: none;
  background-image: none;
  background-color: transparent;
  width: 100px;
}
.n-form-refer-placeholder {
  color: #919293;
}
.n-form-refer-icon {
  visibility: hidden;
  transform: translateX(4px);
}
.n-form-border-available > .n-form-refer:hover {
  border-color: #006ce1;
  background-color: #e1edfa;
}
.n-form-border-available > .n-form-refer:hover .n-form-refer-icon {
  visibility: visible;
}
.n-form-value-array {
  display: flex;
  align-items: center;
}
.n-form-value-array .n-form-refer-main {
  width: 0;
  flex: auto;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.n-form-value-array .n-form-refer-text {
  color: #adb5bd;
  padding-left: 8px;
  flex-shrink: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 80%;
}
.n-form-refer-array {
  max-width: calc(100% - 16px);
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.n-form-refer-array .n-form-refer-text {
  color: #adb5bd;
  padding-left: 8px;
}
.n-form-border-small .n-form-value {
  font-size: 12px;
  line-height: 20px;
  min-height: 26px;
  padding: 3px 7px;
}
.n-form-border-middle .n-form-value {
  font-size: 12px;
  line-height: 20px;
  min-height: 30px;
  padding: 5px 7px;
}
.n-form-border-large .n-form-value {
  font-size: 14px;
  line-height: 26px;
  min-height: 40px;
  padding: 7px 9px;
}
.n-form-border .n-form-value-right-icon {
  padding-right: 26px;
}
.n-form-border-small .n-form-refer {
  padding: 1px 7px;
  border-radius: 10px;
}
.n-form-border-small .n-form-refer-placeholder,
.n-form-border-small .n-form-refer-search {
  padding-left: 2px;
}
.n-form-border-middle .n-form-refer {
  padding: 3px 7px;
  border-radius: 12px;
}
.n-form-border-middle .n-form-refer-placeholder,
.n-form-border-middle .n-form-refer-search {
  padding: 2px;
}
.n-form-border-large .n-form-refer {
  padding: 8px 7px;
  border-radius: 17px;
}
.n-form-border-large .n-form-refer-placeholder,
.n-form-border-large .n-form-refer-search {
  padding: 7px 4px;
}
.n-go,
.n-go canvas {
  outline: none;
}
.n-grid-container {
  padding: 16px 16px 0 32px;
}
.n-grid-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding-bottom: 0;
}
.n-grid {
  flex: auto;
  padding-right: 16px;
  margin-bottom: 16px;
}
.n-grid-width-1 {
  width: 25%;
}
.n-grid-width-2 {
  width: 50%;
}
.n-grid-width-3 {
  width: 75%;
}
.n-grid-width-4 {
  width: 100%;
}
.n-grid-height-1 {
  height: 50px;
}
@media screen and (min-width: 1392px) {
  .n-grid-height-1 {
    height: 68px;
  }
}
@media screen and (min-width: 1632px) {
  .n-grid-height-1 {
    height: 88px;
  }
}
.n-grid-height-2 {
  height: 116px;
}
@media screen and (min-width: 1392px) {
  .n-grid-height-2 {
    height: 152px;
  }
}
@media screen and (min-width: 1632px) {
  .n-grid-height-2 {
    height: 192px;
  }
}
.n-grid-height-3 {
  height: 182px;
}
@media screen and (min-width: 1392px) {
  .n-grid-height-3 {
    height: 236px;
  }
}
@media screen and (min-width: 1632px) {
  .n-grid-height-3 {
    height: 296px;
  }
}
.n-grid-height-4 {
  height: 248px;
}
@media screen and (min-width: 1392px) {
  .n-grid-height-4 {
    height: 320px;
  }
}
@media screen and (min-width: 1632px) {
  .n-grid-height-4 {
    height: 400px;
  }
}
.n-grid-height-5 {
  height: 314px;
}
@media screen and (min-width: 1392px) {
  .n-grid-height-5 {
    height: 404px;
  }
}
@media screen and (min-width: 1632px) {
  .n-grid-height-5 {
    height: 504px;
  }
}
.n-grid-height-6 {
  height: 380px;
}
@media screen and (min-width: 1392px) {
  .n-grid-height-6 {
    height: 488px;
  }
}
@media screen and (min-width: 1632px) {
  .n-grid-height-6 {
    height: 608px;
  }
}
.n-grid-height-7 {
  height: 446px;
}
@media screen and (min-width: 1392px) {
  .n-grid-height-7 {
    height: 572px;
  }
}
@media screen and (min-width: 1632px) {
  .n-grid-height-7 {
    height: 712px;
  }
}
.n-grid-height-8 {
  height: 512px;
}
@media screen and (min-width: 1392px) {
  .n-grid-height-8 {
    height: 656px;
  }
}
@media screen and (min-width: 1632px) {
  .n-grid-height-8 {
    height: 816px;
  }
}
.n-icon {
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
/* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.n-icon:before {
/* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'ni-font' !important;
}
.n-icon {
  vertical-align: text-top;
  display: inline-block;
  text-align: center;
}
.n-icon-default {
  color: #313233;
  cursor: pointer;
}
.n-icon-default.hover,
.n-icon-default:hover {
  color: #0c6fff;
}
.n-icon-default.active,
.n-icon-default:active {
  color: #0958cc;
}
.n-icon-default[disabled] {
  cursor: default;
  color: #d5d6d6;
}
.n-icon-primary {
  color: #6da8ff;
  cursor: pointer;
}
.n-icon-primary.hover,
.n-icon-primary:hover {
  color: #0c6fff;
}
.n-icon-primary.active,
.n-icon-primary:active {
  color: #0958cc;
}
.n-icon-primary[disabled] {
  cursor: default;
  color: #cee2ff;
}
.n-icon-dark {
  color: #fff;
  cursor: pointer;
}
.n-icon-dark.hover,
.n-icon-dark:hover {
  color: #0c6fff;
}
.n-icon-dark.active,
.n-icon-dark:active {
  color: #0958cc;
}
.n-icon-dark[disabled] {
  cursor: default;
  color: #323232;
}
.n-icon-gray {
  color: #919293;
  cursor: pointer;
}
.n-icon-gray.hover,
.n-icon-gray:hover {
  color: #0c6fff;
}
.n-icon-gray.active,
.n-icon-gray:active {
  color: #0958cc;
}
.n-icon-gray[disabled] {
  cursor: default;
  color: #d5d6d6;
}
.n-icon-light {
  color: #cccfd3;
  cursor: pointer;
}
.n-icon-light.hover,
.n-icon-light:hover {
  color: #0c6fff;
}
.n-icon-light.active,
.n-icon-light:active {
  color: #0958cc;
}
.n-icon-light[disabled] {
  cursor: default;
  color: #d5d6d6;
}
.n-icon-12 {
  width: 12px;
  font-size: 12px;
  line-height: 12px;
}
.n-icon-16 {
  width: 16px;
  font-size: 16px;
  line-height: 16px;
}
.n-icon-20 {
  width: 20px;
  font-size: 20px;
  line-height: 20px;
}
.n-icon-24 {
  width: 24px;
  font-size: 24px;
  line-height: 24px;
}
.n-information {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  align-content: flex-start;
}
.n-information-list-1 .n-information-patch,
.n-information-list-1 .n-information-cell {
  width: 100%;
}
.n-information-list-2 .n-information-patch,
.n-information-list-2 .n-information-cell {
  width: 50%;
}
.n-information-list-3 .n-information-patch,
.n-information-list-3 .n-information-cell {
  width: 33.33%;
}
.n-information-list-4 .n-information-patch,
.n-information-list-4 .n-information-cell {
  width: 25%;
}
.n-information-list-5 .n-information-patch,
.n-information-list-5 .n-information-cell {
  width: 20%;
}
.n-information-patch {
  flex: auto;
}
.n-information-patch-break {
  width: 100%;
}
.n-information-patch-line {
  height: 24px;
  width: 100%;
}
.n-information-cell {
  flex: auto;
  display: inline-flex;
  align-items: flex-start;
  margin-bottom: 8px;
  font-size: 13px;
  line-height: 22px;
  color: #687185;
  padding-right: 8px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.n-information-cell.w-25 {
  width: 25%;
}
.n-information-cell.w-33 {
  width: 33.33%;
}
.n-information-cell.w-50 {
  width: 50%;
}
.n-information-cell.w-66 {
  width: 66.66%;
}
.n-information-cell.w-75 {
  width: 75%;
}
.n-information-cell.w-100 {
  width: 100%;
}
.n-information-title {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  font-weight: bold;
}
.n-information-title .n-icon {
  margin-left: 4px;
}
.n-information-label {
  color: #35425c;
  flex-shrink: 0;
  font-weight: bold;
}
.n-information-text {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.n-information-text.wrap {
  white-space: normal;
}
.n-information-scene {
  padding: 8px 8px 0 16px;
  border-width: 1px;
  border-radius: 4px;
}
.n-information-scene + .n-information-scene {
  margin-top: 8px;
}
.n-information-scene-info {
  background: #d7e8fc;
  border-color: #bbdfff;
}
.n-information-scene-success {
  background: #ebfae8;
  border-color: #d9f6d5;
}
.n-information-scene-warning {
  background: #fff3e0;
  border-color: #ffe3b9;
}
.n-information-scene-error {
  background: #fbeaed;
  border-color: #ffdee3;
}
.n-information-lite {
  display: block;
}
.n-information-lite .n-information-cell {
  width: unset;
  color: #161616;
  font-size: 12px;
  line-height: 20px;
  margin-right: 24px;
  min-width: unset !important;
}
.n-information-lite .n-information-title {
  width: unset !important;
}
.n-information-lite .n-information-title:after {
  content: ':';
  padding-left: 2px;
  padding-right: 4px;
}
.n-information-block-header {
  position: relative;
  margin-bottom: 8px;
}
.n-information-block-icon {
  top: 0;
  left: -6px;
  position: absolute;
  width: 14px;
  height: 14px;
  background: url("//icvip-temp.oss-cn-shenzhen.aliyuncs.com/cdn/202311/ukyrkchd_information_icon.svg") left center no-repeat;
  background-size: contain;
  border-radius: 50%;
}
.n-information-block-title {
  z-index: 2;
  color: #031333;
  font-size: 13px;
  line-height: 22px;
  font-weight: bold;
  position: relative;
}
.n-information-block-line {
  padding-bottom: 15px;
  border-top: 1px solid #e6e8eb;
}
.n-information-group {
  gap: 16px;
  display: flex;
  flex-direction: column;
}
.n-input {
  width: 100%;
  cursor: text;
}
.n-input .fake-rows {
  white-space: pre-wrap;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
}
textarea.n-form-value,
input.n-form-value {
  font-family: inherit;
  width: 100%;
}
.n-input-max {
  position: absolute;
  right: 4px;
  bottom: 7px;
  font-size: 12px;
  line-height: 16px;
  opacity: 0.8;
  color: #6d7880;
  padding: 0 2px;
  background-color: #f7f8fa;
}
.n-input-complete {
  cursor: default;
}
.n-input-complete.n-form-border-available {
  cursor: text;
}
.n-input-extend {
  display: flex;
  align-items: center;
}
.n-input-extend .n-icon {
  flex-shrink: 0;
}
.n-input-extend .n-form-icon {
  transform: translate(-100%, -50%);
}
.n-input-extend .n-form-icon-extend {
  background-color: #f1f3f5;
  border-radius: 0 4px 4px 0;
  border-left: 1px solid #caccd4;
}
.n-input-extend-footer {
  text-align: right;
  margin-top: 8px;
}
.n-input-extend-footer .n-btn {
  margin-left: 8px;
}
.n-input-extend.n-form-border-small .n-icon {
  width: 26px;
  line-height: 26px;
}
.n-input-extend.n-form-border-middle .n-icon {
  width: 30px;
  line-height: 30px;
}
.n-input-extend.n-form-border-large .n-icon {
  width: 40px;
  font-size: 18px;
  line-height: 40px;
}
.n-input-filter .n-filter-value-text {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: block;
  max-width: 120px;
}
.n-input-filter-border {
  border-radius: 4px;
  border: 1px solid #1776f2;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.n-input-filter-border .n-checkbox-label {
  color: #687185;
  margin: 0 4px;
}
.n-input-filter-border .n-icon {
  font-size: 16px;
  width: 31px;
  flex-shrink: 0;
  text-align: center;
  line-height: 30px;
  background-color: #fafafb;
  border-left: 1px solid #cdd0d6;
  transition: all 0.2s ease;
}
.n-input-filter-border .n-icon:hover,
.n-input-filter-border .n-icon:focus-visible {
  outline: none;
  color: #1776f2;
  background-color: #e8f1fe;
  border-left-color: #1776f2;
}
.n-input-filter-footer {
  display: flex;
  align-items: center;
  padding-top: 6px;
}
.n-input-filter-footer .n-btn-primary {
  margin-left: auto;
  padding: 1px 7px;
}
.n-input-filter-paster {
  position: absolute;
  padding: 8px;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 8px 0 rgba(22,22,22,0.25);
}
.n-input-filter-paster textarea {
  max-height: 180px;
}
.n-input-filter-paster-input,
.n-input-filter-paster .n-form-value {
  width: 100%;
  outline: none;
  border: none;
  font-size: 12px;
  line-height: 20px;
  min-height: 30px;
  padding: 5px 7px;
}
.n-input-number {
  display: flex;
  align-items: center;
}
.n-input-number input {
  text-align: center;
}
.n-input-number .n-icon {
  flex-shrink: 0;
}
.n-input-number.n-form-border-small .n-icon {
  width: 26px;
  line-height: 26px;
}
.n-input-number.n-form-border-middle .n-icon {
  width: 30px;
  line-height: 30px;
}
.n-input-number.n-form-border-large .n-icon {
  width: 40px;
  font-size: 18px;
  line-height: 40px;
}
.n-input-picker {
  display: inline-flex;
  align-items: flex-start;
}
.n-input-picker .n-filter-placed,
.n-input-picker .n-filter-value {
  margin-left: 8px;
}
.n-input-picker .n-filter-placed {
  margin: 4;
}
.n-input-picker-icon {
  margin-right: 8px;
  margin-left: 4px;
  align-self: center;
}
.n-input-picker-empty {
  padding-left: 0;
  padding-right: 4px;
}
.n-input-picker .n-input {
  width: 125px;
}
.n-input-picker .n-filter-value {
  max-width: 100px;
}
.n-input-picker .range-line {
  align-self: center;
}
.n-input-picker-range .n-filter-value {
  max-width: 180px;
}
.n-input-range {
  display: flex;
  align-items: center;
}
.n-input-search {
  display: flex;
  align-items: flex-start;
}
.n-input-search .n-checkbox-label {
  margin-left: 4px;
}
.n-input-search.n-form-border-small .n-checkbox {
  margin: 3px 8px 0 4px;
}
.n-input-search.n-form-border-middle .n-checkbox {
  margin: 5px 8px 0 4px;
}
.n-input-search.n-form-border-large .n-checkbox {
  margin: 10px 10px 0 4px;
}
.n-input-search-filter {
  display: inline-flex;
}
.n-input-search-filter .n-checkbox {
  flex-shrink: 0;
}
.n-input-search-icon {
  outline: none;
  font-size: 16px;
  flex-shrink: 0;
  text-align: center;
  background-color: #fafafb;
  border-left: 1px solid #cdd0d6;
  transition: all 0.2s ease;
  border-radius: 0 4px 4px 0;
}
.n-input-search-icon:not([disabled]):hover,
.n-input-search-icon:focus-visible {
  color: #1776f2;
  background-color: #e8f1fe;
  border-left-color: #e8f1fe;
  box-shadow: 0 0 0 1px #1776f2;
}
.n-input-search-filter-small .n-form-value {
  min-height: 22px;
  padding: 1px 7px;
}
.n-input-search-filter-small .n-checkbox {
  margin: 1px 4px 0;
}
.n-input-search-filter-small .n-input-search-icon {
  font-size: 14px;
  width: 22px;
  line-height: 22px;
}
.n-input-search-filter-middle .n-form-value {
  min-height: 26px;
  padding: 3px 7px;
}
.n-input-search-filter-middle .n-checkbox {
  margin: 3px 4px 0;
}
.n-input-search-filter-middle .n-input-search-icon {
  width: 26px;
  line-height: 26px;
}
.n-input-search-filter-large .n-form-value {
  min-height: 30px;
  padding: 2px 7px;
}
.n-input-search-filter-large .n-checkbox {
  margin: 5px 8px 0 4px;
}
.n-input-search-filter-large .n-input-search-icon {
  width: 30px;
  line-height: 30px;
}
.n-input-tag {
  cursor: text;
}
.n-interact-rect {
  position: relative;
}
.n-interact-rect.n-interact-active {
  z-index: 99997;
  box-shadow: 0 0 10px 0 rgba(172,178,187,0.84);
}
.n-interact-container {
  position: relative;
}
.n-interact-container .n-interact-rect {
  position: absolute;
}
.n-interact-container .n-interact-resize-width {
  cursor: w-resize;
  width: 3px;
  left: unset;
  z-index: 99998;
}
.n-interact-container .n-interact-resize-height {
  cursor: n-resize;
  height: 3px;
  top: unset;
  z-index: 99998;
}
.n-interact-container .n-interact-resize-all {
  cursor: nw-resize;
  width: 5px;
  height: 5px;
  top: unset;
  left: unset;
  z-index: 99999;
}
.n-interact-form-btn-group {
  margin-left: auto;
}
.n-interact-form-btn-group .n-btn-mini {
  padding: 0 4px;
}
.n-interact-form-btn-group .n-btn-mini:first-child {
  border-bottom-left-radius: 0;
}
.n-interact-form-btn-group .n-btn-mini:last-child {
  border-bottom-right-radius: 0;
}
.n-interact-form .n-form-item {
  min-width: unset !important;
}
div.n-interact-form-position-x {
  margin-bottom: 4px;
}
div.n-interact-form-position-x .n-interact-form-btn-group {
  margin-left: auto;
}
div.n-interact-form-position-x .n-form-label {
  padding-right: 0;
}
div.n-interact-form-position-x .n-btn-mini {
  padding: 0 5px;
}
div.n-interact-form-position-x .n-btn-mini:first-child {
  border-bottom-left-radius: 0;
}
div.n-interact-form-position-x .n-btn-mini:last-child {
  border-bottom-right-radius: 0;
}
div.n-interact-form-position-x .n-form-border-rect {
  border-top-right-radius: 0;
}
.n-interact-form-position-x .n-input,
.n-interact-form-position-w .n-input {
  display: flex;
  align-items: center;
}
.n-interact-form-position-x .n-input:before,
.n-interact-form-position-w .n-input:before {
  color: #cccfd3;
  flex-shrink: 0;
  font-size: 12px;
  margin-left: 7px;
}
div.n-interact-form-position-x .n-input:first-child:before {
  content: '左';
}
div.n-interact-form-position-x .n-input:last-child:before {
  content: '上';
}
div.n-interact-form-position-w .n-input:first-child:before {
  content: '宽';
}
div.n-interact-form-position-w .n-input:last-child:before {
  content: '高';
}
.n-layout {
  display: flex;
  align-items: stretch;
  flex-direction: row;
}
.n-layout-vertical {
  flex-direction: column;
}
.n-layout-center {
  align-items: center;
}
.n-layout-auto {
  position: relative;
  flex: auto;
}
.n-content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.n-link-primary {
  cursor: pointer;
  color: #0c6fff;
}
.n-link-primary:hover {
  color: #3c8bff;
}
.n-link-primary:active {
  color: #0958cc;
}
.n-loading-bar {
  height: 0;
  position: relative;
  z-index: 1;
}
.n-mask {
  position: fixed;
  top: 0;
  left: 0;
  height: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.n-mask-main {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0,0,0,0.4);
}
.n-mask-close {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 32px;
  font-size: 32px;
  line-height: 32px;
}
.n-notice {
  position: fixed;
  top: 48px;
  right: 0;
  height: 0;
  z-index: 2000;
}
.n-notice-position {
  padding-top: 8px;
  margin-right: 16px;
}
.n-notice-item {
  width: 480px;
  background-color: #fff;
  box-shadow: 0 2px 8px 0 rgba(22,22,22,0.25);
  border-radius: 4px;
}
.n-notice-header {
  display: flex;
  align-items: center;
  height: 56px;
  padding: 0 16px;
}
.n-notice-icon {
  margin-right: 8px;
  flex-shrink: 0;
}
.n-notice-title {
  flex: auto;
  font-size: 14px;
  line-height: 22px;
  font-weight: bold;
  margin-right: 8px;
}
.n-notice .n-circle {
  flex-shrink: 0;
}
.n-notice-hidden-circle .n-circle svg {
  visibility: hidden;
}
.n-notice-content {
  word-break: break-all;
  white-space: pre-wrap;
  font-size: 14px;
  line-height: 22px;
  padding: 0 16px 16px;
  max-height: 60vh;
  overflow: auto;
}
.n-notice-footer {
  text-align: right;
  padding: 16px;
}
.n-notice-notify .n-notice-content {
  color: #515253;
}
.n-notice-notify.n-notice-has-icon .n-notice-content {
  padding-left: 40px;
}
.n-notice-notification .n-notice-header {
  border-radius: 4px;
  background: linear-gradient(180deg, #fff 0%, #f0f3f6 100%);
}
.n-notice-notification .n-notice-content {
  color: #161616;
  padding-top: 16px;
}
.n-notice-notification.n-notice-has-icon .n-notice-content {
  padding-left: 44px;
}
.n-notice-type-info .n-notice-icon {
  color: #0c6fff;
}
.n-notice-type-success .n-notice-icon {
  color: #27c000;
}
.n-notice-type-warning .n-notice-icon {
  color: #ff6b00;
}
.n-notice-type-error .n-notice-icon {
  color: #ee2e14;
}
.n-notice-enter-active {
  transition: all 0.2s ease;
}
.n-notice-enter {
  opacity: 0.5;
  transform: translateX(100%);
}
.n-notice-leave-active {
  transition: all 0.2s linear;
  padding-top: 0;
  position: relative;
}
.n-notice-leave-active .n-notice-item {
  overflow: hidden;
  position: absolute;
  top: 8px;
  right: 0;
  bottom: 0;
  left: 0;
}
.n-notice-leave-to {
  opacity: 0.5;
  height: 0 !important;
}
.n-note {
  display: inline-block;
  color: #161616;
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 12px;
  line-height: 20px;
}
.n-note-wrap {
  white-space: normal;
  word-break: break-all;
}
.n-note-label {
  font-weight: bold;
}
.n-note-label:after {
  content: ':';
  padding-left: 2px;
  padding-right: 4px;
}
.n-note-flex {
  display: flex;
  align-items: center;
}
.n-note-flex .n-description-value {
  flex: auto;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.n-note-list-text .n-note + .n-note {
  margin-left: 24px;
}
.n-note-list-horizontal {
  display: flex;
  align-items: center;
}
.n-note-list-horizontal .n-note {
  flex: auto;
}
.n-note-list-vertical .n-note {
  display: block;
}
.n-note-list-flow {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
.n-note-list-flow .n-note,
.n-note-list-flow .n-node-empty {
  flex: auto;
  width: 138px;
  min-width: 138px;
}
.n-note-list-space-middle .n-note {
  padding-top: 4px;
  padding-bottom: 4px;
  min-height: 28px;
}
.n-note-list-scene {
  padding: 8px 16px;
  border-width: 1px;
  border-radius: 4px;
}
.n-note-list-scene + .n-note-list-scene {
  margin-top: 8px;
}
.n-note-list-scene-info {
  background: #d7e8fc;
  border-color: #bbdfff;
}
.n-note-list-scene-success {
  background: #ebfae8;
  border-color: #d9f6d5;
}
.n-note-list-scene-warning {
  background: #fff3e0;
  border-color: #ffe3b9;
}
.n-note-list-scene-error {
  background: #fbeaed;
  border-color: #ffdee3;
}
.n-options {
  min-width: 136px;
  max-width: 360px;
}
.n-options .n-options-label {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding: 6px 12px;
  min-height: 32px;
}
.n-options .n-options-checkbox {
  position: absolute;
  left: 12px;
  top: 8px;
}
.n-options .n-options-checkbox + .n-options-label {
  margin-left: 24px;
}
.n-options-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px 0;
  border-top: 1px solid #e2e6ec;
}
.n-options-footer .n-checkbox-icon {
  cursor: pointer;
}
.n-options-footer .n-btn-primary {
  margin-left: auto;
  padding: 1px 7px;
}
.n-options .n-options-label-array,
.n-options-cascader .n-options-label-array,
.n-options-children-items .n-options-label-array,
.n-options-tree-item .n-options-label-array {
  display: flex;
  align-items: center;
}
.n-options .n-options-label-main,
.n-options-cascader .n-options-label-main,
.n-options-children-items .n-options-label-main,
.n-options-tree-item .n-options-label-main {
  width: 0;
  flex: auto;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.n-options .n-options-label-text,
.n-options-cascader .n-options-label-text,
.n-options-children-items .n-options-label-text,
.n-options-tree-item .n-options-label-text {
  color: #adb5bd;
  padding-left: 8px;
  flex-shrink: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 80%;
}
div.n-options-size-small .n-options-label {
  padding-top: 4px;
  padding-bottom: 4px;
  min-height: 28px;
}
div.n-options-size-small .n-options-checkbox {
  top: 6px;
}
div.n-options-size-small .n-options-arrow {
  top: 4px;
}
.n-options-list {
  overflow: auto;
}
.n-options-virtual-height {
  width: 0;
  float: left;
}
.n-options-arrow {
  width: 20px;
  line-height: 20px;
  position: absolute;
  right: 4px;
  top: 6px;
}
.n-options-cascader {
  min-width: 130px;
  max-width: 360px;
}
.n-options-cascader .n-options-label {
  overflow: hidden;
  white-space: inherit;
  text-overflow: ellipsis;
  padding: 6px 12px;
  min-height: 32px;
}
.n-options-cascader .n-options-checkbox {
  position: absolute;
  left: 12px;
  top: 8px;
}
.n-options-cascader .n-options-checkbox + .n-options-label {
  margin-left: 24px;
}
.n-options-children {
  min-width: 450px;
}
.n-options-children-main {
  display: flex;
}
.n-options-children-items {
  height: 237px;
}
.n-options-children-parent {
  color: #161616;
}
div.n-options-children-sider {
  min-width: 50%;
  max-width: 50%;
  height: 270px;
}
div.n-options-children-sider + div.n-options-children-sider {
  padding-left: 4px;
}
.n-options-children .n-options-checkbox {
  position: absolute;
  left: 12px;
  top: 8px;
}
.n-options-children .n-options-checkbox + .n-options-label {
  margin-left: 24px;
}
.n-options-children .n-options-label {
  overflow: hidden;
  white-space: inherit;
  text-overflow: ellipsis;
  padding: 6px 12px;
  min-height: 32px;
}
.n-options-children .n-options-empty {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.n-options-children .n-options-footer {
  justify-content: flex-end;
}
.n-options-children-parent {
  height: 33px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e2e6ec;
  padding-right: 12px;
}
.n-options-children-parent .n-options-label {
  font-weight: bold;
}
.n-options-container {
  position: absolute;
  cursor: default;
  padding: 8px 0;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 8px 0 rgba(22,22,22,0.25);
  font-size: 12px;
  line-height: 20px;
}
.n-options-container.hidden {
  visibility: hidden !important;
}
.n-options-loading {
  height: 104px;
  color: #1776f2;
  flex-direction: column;
}
.n-options-loading .n-loading-icon {
  margin-bottom: 8px;
}
.n-options-empty-default {
  height: 104px;
  color: #687185;
  padding-top: 76px;
  text-align: center;
  background-image: url("data:image/png;base64,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");
  background-repeat: no-repeat;
  background-size: 72px 60px;
  background-position: center 8px;
}
.n-options-line {
  position: relative;
  white-space: nowrap;
}
.n-options-line.wrap {
  white-space: normal;
}
.n-options-line.disabled {
  cursor: default;
  color: #cccfd3;
}
.n-options-line.query {
  background-color: #e6f0ff;
}
.n-options-line.available {
  color: #161616;
  cursor: pointer;
}
.n-options-line.available:hover {
  background-color: #e6f0ff;
}
.n-options-line.hover {
  background-color: #e6f0ff;
}
.n-options-line.active,
.n-options-line.active:hover {
  color: #0c6fff;
}
.n-options-search {
  margin: 0 8px 8px;
}
.n-options-search input {
  outline: 0;
  color: #161616;
  display: block;
  width: 100%;
  background-image: none;
  background-color: transparent;
  border-radius: 4px;
  border: 1px solid #a1abb3;
  font-size: 12px;
  line-height: 20px;
  min-height: 26px;
  padding: 3px 7px;
}
.n-options-line.has-children > .n-options-label {
  padding-right: 24px;
}
.n-options-date-main {
  display: flex;
}
.n-options-date-header {
  display: flex;
  align-items: center;
  padding: 8px 4px;
  width: 100%;
}
.n-options-date-header .n-icon {
  margin: 0 4px;
}
.n-options-date-title {
  flex: auto;
  font-size: 14px;
  line-height: 22px;
  color: #161616;
  font-weight: bold;
  text-align: center;
}
.n-options-date-panel {
  width: 272px;
  height: 277px;
  padding: 0 10px;
}
.n-options-date-item {
  position: relative;
  margin: 4px 0;
  height: 24px;
}
.n-options-date-item-value {
  font-size: 14px;
  line-height: 22px;
  width: 24px;
  border-radius: 4px;
  text-align: center;
  transition: all 0.2s ease;
  border: 1px solid transparent;
  color: #cccfd3;
  display: inline-block;
  z-index: 1;
}
.n-options-date-item-disabled {
  cursor: not-allowed;
}
.n-options-date-item-available {
  cursor: pointer;
}
.n-options-date-item-available:hover {
  background-color: #e2eeff;
}
.n-options-date-item-month.n-options-date-item-available {
  color: #161616;
}
.n-options-date-item-month.n-options-date-item-active {
  color: #fff;
  background-color: #0c6fff;
}
.n-options-date-item-month.n-options-date-item-current {
  border-color: #0c6fff;
}
.n-options-date-item-range:before {
  content: '';
  background-color: #e8f7ff;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.n-options-date-item-range .n-options-date-item-value {
  position: relative;
  z-index: 1;
}
.n-options-date-item-range-start:before {
  left: 6px;
  border-radius: 4px 0 0 4px;
}
.n-options-date-item-range-end:before {
  right: 6px;
  border-radius: 0 4px 4px 0;
}
.n-options-date-item-range-start .n-options-date-item-value,
.n-options-date-item-range-end .n-options-date-item-value {
  color: #fff;
  background-color: #0c6fff;
}
.n-options-date-times {
  height: 277px;
  padding: 0 8px;
}
.n-options-date-times-main {
  display: flex;
}
.n-options-date-time {
  width: 80px;
  margin: 0 2px;
}
.n-options-date-time-main {
  height: 190px;
  border-radius: 4px;
  background-color: #fbfcfe;
}
.n-options-date-time-item {
  cursor: pointer;
  font-size: 12px;
  line-height: 20px;
  padding: 2px 0;
  color: #161616;
  transition: all 0.2s ease;
  border-radius: 4px;
  text-align: center;
}
.n-options-date-time-item:hover {
  color: #0c6fff;
  background-color: #e6f0ff;
}
.n-options-date-time-item.active {
  color: #fff;
  background-color: #0c6fff;
}
.n-options-month .n-options-date-header {
  padding-left: 24px;
  padding-right: 24px;
}
.n-options-month-main {
  display: flex;
}
.n-options-month-calendar {
  width: 220px;
  padding: 0 16px 8px;
  display: flex;
  flex-wrap: wrap;
}
.n-options-month-item {
  width: 30%;
  flex: auto;
  margin: 8px 0;
  text-align: center;
}
.n-options-month-item-value {
  font-size: 14px;
  line-height: 22px;
  width: 38px;
  border-radius: 4px;
  text-align: center;
  transition: all 0.2s ease;
  border: 1px solid transparent;
  color: #cccfd3;
  display: inline-block;
}
.n-options-month-item-disabled {
  cursor: not-allowed;
}
.n-options-month-item-available {
  color: #161616;
  cursor: pointer;
}
.n-options-month-item-available:hover {
  background-color: #e2eeff;
}
.n-options-month-item-active {
  color: #fff;
  background-color: #0c6fff;
}
.n-options-month-item-current {
  border-color: #0c6fff;
}
.n-options-month-item-range {
  position: relative;
}
.n-options-month-item-range:before {
  content: '';
  background-color: #e8f7ff;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.n-options-month-item-range .n-options-month-item-value {
  position: relative;
  z-index: 1;
}
.n-options-month-item-range-start:before {
  left: 13px;
  border-radius: 4px 0 0 4px;
}
.n-options-month-item-range-end:before {
  right: 13px;
  border-radius: 0 4px 4px 0;
}
.n-options-month-item-range-start .n-options-month-item-value,
.n-options-month-item-range-end .n-options-month-item-value {
  color: #fff;
  background-color: #0c6fff;
}
.n-options-tree {
  min-width: 200px;
  max-width: 400px;
}
.n-options-tree .n-options-line {
  display: flex;
  align-items: center;
}
.n-options-tree .n-options-label {
  padding: 6px 0;
  margin: 0 4px;
  flex: auto;
  overflow: hidden;
  white-space: inherit;
  text-overflow: ellipsis;
  min-height: 32px;
}
.n-options-tree .n-options-label-array {
  margin-right: 12px;
}
.n-options-tree .n-options-tree-arrow {
  flex-shrink: 0;
  width: 24px;
  line-height: 24px;
  transition: transform 0.1s ease;
}
.n-options-tree .n-options-tree-checkbox {
  flex-shrink: 0;
  margin-right: 4px;
}
.n-options-tree .n-link-primary {
  flex-shrink: 0;
  visibility: hidden;
  margin-right: 8px;
}
.n-options-tree .n-options-line:hover .n-link-primary {
  visibility: visible;
}
.n-options-tree .n-options-footer {
  justify-content: flex-end;
}
.n-pagination {
  font-size: 12px;
  line-height: 20px;
  display: flex;
  align-items: center;
}
.n-pagination-info {
  color: #687185;
  white-space: nowrap;
}
.n-pagination-total {
  margin: 0 2px;
  color: #4280f8;
}
.n-pagination-button {
  margin-left: auto;
  margin-right: 8px;
}
.n-pagination-index {
  display: flex;
  align-items: center;
}
.n-pagination-icon {
  font-size: 14px;
  line-height: 20px;
  width: 20px;
  color: #313233;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.2s ease;
}
.n-pagination-icon:hover {
  color: #0c6fff;
  background-color: #f0f3f6;
}
.n-pagination-icon[disabled],
.n-pagination-icon[disabled]:hover {
  cursor: default;
  color: #d5d6d6;
  background-color: transparent;
}
.n-pagination-output {
  margin: 0 2px;
}
.n-pagination-output.cursor {
  cursor: pointer;
}
.n-pagination-input {
  margin: 0 2px;
  width: 36px;
}
.n-pagination-input .n-form-value {
  padding: 0 2px;
  line-height: 18px;
  min-height: 18px;
  text-align: center;
}
.n-pagination-value {
  color: #1776f2;
}
.n-pagination-line {
  margin: 0 2px;
}
.n-panel {
  border-radius: 8px;
  background-color: #fff;
}
.n-panel-header {
  padding: 8px 16px;
  justify-content: flex-start;
}
.n-panel-title {
  flex-shrink: 0;
  color: #35425c;
  font-size: 13px;
  line-height: 28px;
}
.n-panel-content {
  position: relative;
}
.n-panel-content.top {
  padding-top: 16px;
}
.n-panel-content.between {
  padding-bottom: 16px;
  margin: 0 16px;
}
.n-panel-content.around {
  padding: 16px 0;
  margin: 0 16px;
}
.n-panel-header + .n-panel-content.top,
.n-panel-header + .n-panel-content.around {
  border-top: 1px solid #e6e8eb;
}
.n-panel-fill-height {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.n-panel-fill-height .n-panel-content {
  flex: 1;
}
.n-paster {
  display: inline-block;
}
.n-paster-content {
  font-size: 12px;
  line-height: 20px;
  text-align: left;
  border-radius: 4px;
  position: relative;
  background-color: #fff;
  filter: drop-shadow(0px 2px 8px rgba(22,22,22,0.25));
}
[data-popper-reference-hidden] {
  visibility: hidden;
  pointer-events: none;
}
[data-popper-placement] > [data-popper-arrow] {
  width: 8px;
  height: 8px;
  position: absolute;
  transform: rotate(45deg);
  background-color: inherit;
  z-index: -1;
}
[data-popper-placement^=right] > [data-popper-arrow] {
  left: -4px;
}
[data-popper-placement^=left] > [data-popper-arrow] {
  right: -4px;
}
[data-popper-placement^=top] > [data-popper-arrow] {
  bottom: -4px;
}
[data-popper-placement^=bottom] > [data-popper-arrow] {
  top: -4px;
}
div.n-form-border-picker {
  display: inline-block;
  width: unset;
}
div.n-form-border-picker.n-form-border-available:hover {
  border-color: #0c6fff;
}
div.n-form-border-picker .n-select-values-label {
  color: #0c6fff;
  font-weight: bold;
}
div.n-form-border-picker .n-select-values-label.placeholder {
  font-weight: normal;
  color: #161616;
}
div.n-form-border-picker .n-select-values-label.placed {
  margin-right: 8px;
}
div.n-form-border-picker .n-select-values-placed + span {
  margin-left: 8px;
}
.n-picker-header {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.n-picker-header .n-icon {
  margin: 0 4px;
}
.n-picker-title {
  flex: auto;
  font-size: 14px;
  line-height: 22px;
  margin: 0 4px;
  color: #161616;
  font-weight: bold;
  text-align: center;
}
.n-picker-footer {
  height: 36px;
  border-top: 1px solid #e2e6ec;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.n-picker-option {
  font-size: 14px;
  line-height: 22px;
  color: #919293;
  cursor: pointer;
  margin-right: 16px;
}
.n-picker-option:hover {
  color: #0c6fff;
}
.n-per-popper {
  position: absolute;
  z-index: 10;
}
.n-popup {
  font-size: 12px;
  position: absolute;
  background-color: #fff;
  border-radius: 8px;
  min-width: 480px;
  box-shadow: 0 2px 8px 0 rgba(22,22,22,0.25);
}
.n-popup > div:first-child {
  border-radius: 8px 8px 0 0;
}
.n-popup > div:last-child {
  border-radius: 0 0 8px 8px;
}
.n-popup-header {
  height: 56px;
  padding: 0 16px;
  background: linear-gradient(180deg, #fff 0%, #f0f3f6 100%);
  display: flex;
  align-items: center;
}
.n-popup-icon {
  margin-left: 4px;
  width: 24px;
  height: 24px;
  line-height: 24px;
}
.n-popup-icon.n-icon-16 {
  margin-left: 8px;
}
.n-popup-title {
  font-size: 16px;
  line-height: 24px;
  color: #161616;
  font-weight: bold;
  margin-right: auto;
}
.n-popup-footer {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 16px;
}
.n-popup-footer > .n-btn {
  margin-left: 16px;
}
.n-popup-footer > .n-btn:first-child {
  margin-left: 0;
}
.n-popup.maximize {
  top: 0 !important;
  left: 0 !important;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
}
.n-popup.maximize .n-popup-center {
  flex: auto;
  position: relative;
}
.n-popup.maximize .n-popup-content.n-popup-content.n-popup-content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: unset;
}
.n-popup-content.width-small {
  width: 480px;
}
.n-popup-content.width-middle {
  width: 800px;
}
.n-popup-content.width-large {
  width: 1040px;
}
.n-popup-content.flex {
  display: flex;
  flex-direction: column;
}
.n-popup.height-large {
  top: 8vh;
}
@media screen and (max-height: 800px) {
  .n-popup.height-large {
    top: 2vh;
  }
}
.n-popup.height-middle {
  top: 16vh;
}
@media screen and (max-height: 800px) {
  .n-popup.height-middle {
    top: 8vh;
  }
}
.n-popup-content {
  overflow: auto;
}
.n-popup-content.height-large {
  max-height: calc(84vh - 58px);
}
@media screen and (max-height: 800px) {
  .n-popup-content.height-large {
    max-height: calc(96vh - 58px);
  }
}
.n-popup-content.height-large.flex {
  height: calc(84vh - 58px);
}
@media screen and (max-height: 800px) {
  .n-popup-content.height-large.flex {
    height: calc(96vh - 58px);
  }
}
.n-popup-content.height-middle {
  max-height: calc(68vh - 58px);
}
@media screen and (max-height: 800px) {
  .n-popup-content.height-middle {
    max-height: calc(84vh - 58px);
  }
}
.n-popup-content.height-middle.flex {
  height: calc(68vh - 58px);
}
@media screen and (max-height: 800px) {
  .n-popup-content.height-middle.flex {
    height: calc(84vh - 58px);
  }
}
.n-popup-content.has-footer.height-large {
  max-height: calc(84vh - 118px);
}
@media screen and (max-height: 800px) {
  .n-popup-content.has-footer.height-large {
    max-height: calc(96vh - 118px);
  }
}
.n-popup-content.has-footer.height-large.flex {
  height: calc(84vh - 118px);
}
@media screen and (max-height: 800px) {
  .n-popup-content.has-footer.height-large.flex {
    height: calc(96vh - 118px);
  }
}
.n-popup-content.has-footer.height-middle {
  max-height: calc(68vh - 118px);
}
@media screen and (max-height: 800px) {
  .n-popup-content.has-footer.height-middle {
    max-height: calc(84vh - 118px);
  }
}
.n-popup-content.has-footer.height-middle.flex {
  height: calc(68vh - 118px);
}
@media screen and (max-height: 800px) {
  .n-popup-content.has-footer.height-middle.flex {
    height: calc(84vh - 118px);
  }
}
.uif-popup-content {
  overflow: auto;
}
.uif-popup-content.height-large {
  max-height: calc(84vh - 104px);
}
.uif-popup-content.height-large-flex {
  height: calc(84vh - 104px);
}
.uif-popup-content.height-middle {
  max-height: calc(68vh - 104px);
}
.uif-popup-content.height-middle-flex {
  height: calc(68vh - 104px);
}
.uif-popup-content.width-small {
  width: 480px;
}
.uif-popup-content.width-middle {
  width: 800px;
}
.uif-popup-content.width-large {
  width: 1040px;
}
.uif-popup-content.flex {
  display: flex;
  flex-direction: column;
}
.uif-popup-content.maximize {
  max-height: calc(100vh - 104px);
  height: calc(100vh - 104px);
  width: 100vw;
}
.uif-popup-content .uif-slide-block {
  padding: 12px 20px 0;
}
.uif-popup-content .uif-slide-block:last-child {
  padding-bottom: 24px;
}
@media screen and (max-height: 800px) {
  .uif-popup-content.height-large {
    max-height: calc(96vh - 104px);
  }
  .uif-popup-content.height-large-flex {
    height: calc(96vh - 104px);
  }
  .uif-popup-content.height--middle {
    max-height: calc(84vh - 104px);
  }
  .uif-popup-content.height--middle-flex {
    height: calc(84vh - 104px);
  }
}
.n-popup-enter-active,
.n-popup-leave-active {
  transition: all 0.2s ease;
}
.n-popup-enter {
  opacity: 0;
  transform: scale(0.5, 0.5);
}
.n-popup-leave-to {
  opacity: 0;
  transform: translateY(-100px);
}
.n-popup-confirm-content {
  padding: 30px;
  width: 480px;
  line-height: 20px;
  word-break: break-all;
  white-space: pre-wrap;
}
.n-popup-content > .n-form-position-top {
  margin-left: 20px;
  margin-top: 12px;
}
.n-popup-content > .n-form:only-child {
  margin-top: 20px;
  margin-right: 20px;
  margin-bottom: 8px;
}
.n-progress-bar {
  transition: width 0.2s linear;
  background-color: #0c6fff;
  height: 100%;
}
.n-rate {
  padding: 0 2px;
}
.n-rate-item {
  vertical-align: middle;
  cursor: pointer;
  color: #e6e7eb;
  font-size: 20px;
  margin: 0 2px;
  position: relative;
  display: inline-block;
  transition: color 0.1s ease, transform 0.1s ease;
}
.n-rate-item:focus-visible {
  outline: 1px dashed #0c6fff;
}
.n-rate-item-active {
  color: #f2ae00;
}
.n-rate-item-decimal {
  color: #f2ae00;
  top: 0;
  left: 0;
  width: 0;
  overflow: hidden;
  position: absolute;
}
.n-rate-item-hover {
  transform: scale(1.15);
}
.n-rate-text {
  display: inline-block;
  vertical-align: middle;
  font-weight: bold;
  margin-left: 6px;
  color: #35425c;
  font-size: 18px;
  line-height: 20px;
}
.n-rate-disabled .n-rate-item {
  cursor: default;
}
.n-select-children {
  width: 100%;
}
.n-slide-blockx-header {
  display: flex;
  align-items: center;
  height: 40px;
}
.n-slide-blockx-header .uif-loading {
  color: #a4aecf;
  margin-left: 8px;
  transform-origin: center center;
  animation: s-rotate 0.6s linear infinite;
}
.n-slide-blockx-title {
  color: #191919;
  font-size: 14px;
  line-height: 20px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.n-slide-blockx-title .trigger {
  margin-right: 8px;
  transition: transform 0.2s ease;
}
.n-slide-blockx-title.visible .trigger {
  transform: rotate(90deg);
}
.n-slide-blockx-normal {
  background-color: #e6e7eb;
  border-radius: 6px;
}
.n-slide-block-header {
  display: flex;
  align-items: center;
}
.n-slide-block-trigger {
  flex-shrink: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding-right: 4px;
}
.n-slide-block-bar {
  width: 4px;
  height: 22px;
  background-color: #0c6fff;
  border-radius: 0 4px 4px 0;
}
.n-slide-block-title {
  font-size: 14px;
  line-height: 22px;
  font-weight: bold;
  color: #515253;
  margin: 0 4px 0 8px;
}
.n-slide-block-arrow {
  color: #919293;
  transition: transform 0.2s ease;
}
.n-slide-block-arrow.visible {
  transform: rotate(180deg);
}
.n-slide-block-prefix {
  width: 50%;
  flex: auto;
  display: flex;
  align-items: center;
}
.n-slide-block-space {
  padding-top: 8px;
}
.n-slide-block {
  margin-top: 12px;
}
.n-slide-down-enter-active,
.n-slide-down-leave-active {
  transition: height 0.2s;
  overflow: hidden;
}
.n-slide-down-enter,
.n-slide-down-leave-to {
  height: 0 !important;
}
.n-slide-navigation.dark {
  color: #fff;
  border-radius: 4px;
  background-color: rgba(20,33,51,0.8);
  box-shadow: 4px 4px 16px rgba(0,0,0,0.16);
}
.n-slide-navigation.normal {
  color: #142133;
}
.n-slide-navs-scroll {
  overflow: auto;
}
.n-slide-navs-items {
  max-height: 100%;
}
.n-slide-navs-large {
  max-height: 100%;
  overflow-x: hidden;
}
.n-slide-navs-small {
  max-height: 100%;
  display: flex;
  position: relative;
}
.n-slide-navs-small .n-slide-navs-line {
  max-height: 100%;
  padding: 2px 0;
  overflow-x: hidden;
}
.n-slide-navs-small .n-slide-navs-text {
  padding: 2px 0;
  position: absolute;
  right: 100%;
  max-height: 100%;
  overflow: hidden;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 8px 0 rgba(22,22,22,0.25);
}
.slide-navs-enter-active,
.slide-navs-leave-active {
  transition: all 0.2s ease;
}
.slide-navs-enter,
.slide-navs-leave-to {
  opacity: 0;
  transform: translateX(100%);
}
.n-slide-navigation {
  position: relative;
}
.n-slide-navigation-dot {
  width: 8px;
  height: 8px;
  left: 5px;
  position: absolute;
  border-radius: 50%;
  background-color: #fff;
  border: 2px solid #0c6fff;
  transition: top 0.2s ease;
}
.n-slide-navigation-item {
  font-size: 12px;
  line-height: 20px;
  height: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  color: #515253;
  white-space: nowrap;
  transition: all 0.2s ease;
  border-color: #caccd4;
}
.n-slide-navigation-item.hover {
  color: #4893ff;
  border-color: #549aff;
}
.n-slide-navigation-item.active {
  color: #0c6fff;
  border-color: #0c6fff;
  font-weight: bold;
}
.n-slide-navigation .line {
  margin: 0 8px;
  height: 24px;
  border-left-width: 2px;
  border-style: solid;
  border-color: inherit;
  transition: border-color 0.2s ease;
}
.n-slide-navigation .text {
  display: inline-block;
  margin-left: 6px;
  margin-right: 10px;
  line-height: 24px;
}
.n-split {
  width: 100%;
  height: 100%;
}
.n-split-left {
  flex-shrink: 0;
  flex-grow: 0;
  overflow: auto;
}
.n-split-trigger {
  flex: none;
}
.n-split-right {
  flex: auto;
  overflow: auto;
}
.n-split-trigger {
  width: 8px;
  cursor: e-resize;
  flex-direction: column;
  background-color: #cfd1d9;
}
.n-split-trigger .dot {
  width: 4px;
  height: 4px;
  background-color: #fff;
  border-radius: 50%;
  margin: 1px;
  transition: background-color 0.2s ease;
}
.n-split-trigger-vertical {
  height: 8px;
  width: 100%;
  cursor: s-resize;
  flex-direction: row;
}
.n-split-trigger-moving .dot {
  background-color: #006ce1;
}
.n-switch-btn {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: 38px;
  height: 20px;
  border-radius: 10px;
  background-color: #bac1c7;
  transition: background-color 0.2s ease;
}
.n-switch-btn .n-switch-point {
  display: inline-block;
  transition: transform 0.2s ease;
  transform: translate(2px, 2px);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #fff;
}
.n-switch-btn.active {
  background-color: #0c6fff;
}
.n-switch-btn.active .n-switch-point {
  transform: translate(20px, 2px);
}
.n-switch-btn.disabled {
  background-color: #c8d0d6;
  cursor: default;
}
.n-switch-btn.disabled .n-switch-point {
  background-color: #d9dfe5;
}
.n-switch-btn.active.disabled {
  background-color: #bfcfe1;
}
.n-switch-picker {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.n-switch-picker .n-filter-placed {
  margin-left: 8px;
}
.n-switch-picker .n-switch-point {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 0 8px 0 4px;
  background-color: #d9dfe5;
  border: 2px solid #fff;
}
.n-switch-picker.disabled {
  cursor: default;
}
.n-switch-picker.active .n-filter-placed {
  color: #0c6fff;
  font-weight: bold;
}
.n-switch-picker.active .n-switch-point {
  background-color: #0c6fff;
  border-color: #cee2ff;
}
.n-switch-filter .n-filter-value {
  max-width: unset;
  margin-right: 4px;
}
.n-switch-filter-point {
  margin-left: 4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid #f7f9fa;
  background-color: #d9dfe5;
}
.n-switch-filter-point.active {
  border-color: #c1d8f1;
  background-color: #006ce1;
}
.n-tab-container > .n-tab-switch {
  display: block;
  border-bottom: 1px solid #e6e8eb;
  z-index: 10;
}
.n-tab-container > .n-tab-switch .n-tab-switch-item {
  color: #687185;
  min-width: 64px;
  padding: 0 8px;
  text-align: center;
  line-height: 24px;
}
.n-tab-container > .n-tab-switch .n-tab-switch-item.active {
  color: #1776f2;
}
.n-tab-container > .n-tab-switch .n-tab-switch-line {
  width: 64px;
  bottom: -1px;
  color: #1776f2;
  border-radius: 20px;
  transform: translateX(-14px);
}
.n-tab-container > .n-tab-switch-small {
  padding: 5px 8px;
}
.n-tab-container > .n-tab-switch-small .n-tab-switch-item {
  font-size: 14px;
}
.n-tab-container > .n-tab-switch-large {
  padding: 10px 8px 9px;
}
.n-tab-container > .n-tab-switch-large .n-tab-switch-item {
  font-size: 16px;
}
.n-tab-chunk {
  overflow: hidden;
}
.n-tab-chunk-virtual {
  display: none;
}
.n-tab-chunk-content {
  padding: 0 16px 16px;
  overflow: auto;
  background-color: #eaecee;
}
.n-tab-chunk-content::-webkit-scrollbar-track-piece {
  background-color: #eaecee;
}
.n-tab-chunk-navigation {
  z-index: 4;
  flex-shrink: 0;
  width: 8px;
  position: relative;
  background-color: #fff;
  transition: width 0.2s ease;
  box-shadow: 8px 2px 10px 0 #d4dae4;
}
.n-tab-chunk-navigation.fixed {
  width: 160px;
}
.n-tab-chunk-navigation .navigation-content {
  width: 100%;
  right: unset;
  padding: 8px 0;
  overflow: hidden;
  position: relative;
}
.n-tab-chunk-navigation .navigation-bar {
  position: absolute;
  width: 4px;
  height: 14px;
  top: 0;
  left: 4px;
  border-radius: 2px;
  background-color: #4280f8;
  transition: transform 0.18s ease-in-out;
}
.n-tab-chunk-navigation .navigation-item {
  display: flex;
  align-items: center;
  color: #687185;
  font-size: 13px;
  line-height: 26px;
  padding: 0 4px;
  margin: 0 12px;
  border-radius: 4px;
  cursor: pointer;
  user-select: none;
  position: relative;
  margin-bottom: 4px;
  transition: all 0.2s ease;
}
.n-tab-chunk-navigation .navigation-item:hover {
  background-color: #e8f1fe;
}
.n-tab-chunk-navigation .navigation-item.active {
  color: #1776f2;
  font-weight: bold;
  background-color: #f3f8fe;
}
.n-tab-chunk-navigation .navigation-item-text {
  font-weight: inherit;
}
.n-tab-chunk-navigation .navigation-item-tag {
  margin-left: 2px;
  min-width: 18px;
  line-height: 16px;
  text-align: center;
  background: #e8f1fe;
  font-size: 12px;
  border-radius: 4px;
}
.n-tab-chunk-navigation .navigation-item-tag span {
  transform: scale(0.8);
  font-weight: normal;
  display: block;
  color: #687185;
}
.n-tab-chunk-navigation .navigation-trigger {
  color: #fff;
  line-height: 48px;
  position: absolute;
  bottom: 30%;
  left: 100%;
  width: 14px;
  text-align: center;
  cursor: pointer;
  border-radius: 0 14px 14px 0;
  background-color: #cccfd3;
  transition: left 0.2s ease;
}
.n-tab-block {
  padding-top: 16px;
}
.n-tab-block-container {
  border-radius: 8px;
  background-color: #fff;
  position: relative;
}
.n-tab-block-header {
  padding: 8px 16px;
  justify-content: flex-start;
}
.n-tab-block-title {
  flex-shrink: 0;
  color: #35425c;
  font-size: 13px;
  line-height: 28px;
  padding-left: 16px;
  background: url("//icvip-temp.oss-cn-shenzhen.aliyuncs.com/cdn/202212/pfxcztmr_slide-card-block-prefix.svg") no-repeat;
  background-position: 0 center;
  background-size: 14px;
  cursor: pointer;
}
.n-tab-block-title:hover + .n-icon {
  color: #0c6fff;
}
.n-tab-block-icon {
  flex-shrink: 0;
  margin: 0 4px;
}
.n-tab-block-content.top {
  border-top: 1px solid #e6e8eb;
  padding-top: 16px;
}
.n-tab-block-content.between {
  padding-bottom: 16px;
  margin: 0 16px;
}
.n-tab-block-content.around {
  border-top: 1px solid #e6e8eb;
  padding: 16px 0;
  margin: 0 16px;
}
.n-tab-chunk-content > .n-tab-block:last-child {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}
.n-tab-chunk-content > .n-tab-block:last-child:after {
  content: '';
  flex: 1;
  min-height: 280px;
  background: url("//icvip-temp.oss-cn-shenzhen.aliyuncs.com/cdn/202302/lbrcnumy_more.svg") no-repeat center;
  background-size: 200px;
}
.n-tab-block-item + .n-tab-block-item {
  margin-top: 16px;
}
.n-tab-block-item-title {
  position: relative;
  margin-bottom: 8px;
  width: 100%;
  line-height: 22px;
  flex-shrink: 0;
}
.n-tab-block-item-title:before {
  content: '';
  position: absolute;
  top: 0;
  left: -6px;
  width: 14px;
  height: 14px;
  background: url("//icvip-temp.oss-cn-shenzhen.aliyuncs.com/cdn/202311/ukyrkchd_information_icon.svg") left center no-repeat;
  background-size: contain;
  border-radius: 50%;
}
.n-tab-block-item-text {
  position: relative;
  z-index: 2;
  color: #031333;
  font-size: 13px;
  font-weight: bold;
}
.n-tab-switch {
  display: inline-block;
  white-space: nowrap;
  overflow: visible;
  position: relative;
  padding-bottom: 3px;
}
.n-tab-switch-item {
  line-height: 24px;
  font-size: 12px;
  color: #515253;
  cursor: pointer;
  display: inline-block;
  transition: color 0.15s ease;
}
.n-tab-switch-item.active {
  color: #0c6fff;
  font-weight: bold;
  color: #000;
}
.n-tab-switch-line {
  width: 36px;
  height: 2px;
  background-color: #0c6fff;
  border-radius: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: left 0.15s ease;
}
.n-tab-switch-large {
  padding-bottom: 12px;
}
.n-tab-switch-large .n-tab-switch-item {
  font-size: 18px;
  line-height: 26px;
}
.n-tab-switch-item + .n-tab-switch-item {
  margin-left: 8px;
}
.n-tab-switch-vertical {
  position: relative;
  overflow: hidden;
  overflow-y: auto;
  width: 100%;
  height: 100%;
}
.n-tab-switch-vertical-bar {
  position: absolute;
  width: 4px;
  height: 14px;
  top: 0;
  left: 4px;
  border-radius: 2px;
  background-color: #4280f8;
  transition: transform 0.18s ease-in-out;
}
.n-tab-switch-vertical-item {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin-right: 6px;
  margin-left: 12px;
  margin-bottom: 4px;
  padding: 0 4px;
  line-height: 26px;
  color: #687185;
  font-size: 13px;
  border-radius: 4px;
  cursor: pointer;
  user-select: none;
  transition: all 0.2s ease;
}
.n-tab-switch-vertical-item:hover {
  background-color: #e8f1fe;
}
.n-tab-switch-vertical-item.active {
  color: #1776f2;
  font-weight: bold;
  background-color: #f3f8fe;
}
.n-table {
  overflow: hidden;
  background-color: #fff;
}
.n-table-fill-height {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.n-table-fill-height .n-table-no-data {
  z-index: 1;
  height: unset;
  padding-bottom: 2px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.n-table-fill-height .n-table-body {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.n-table-fill-height .n-table-blank {
  position: absolute;
  top: unset;
  right: 0;
  bottom: 0;
  left: 0;
}
.n-table-main {
  flex: auto;
  position: relative;
}
.n-table-top {
  z-index: 2;
  overflow: hidden;
  position: relative;
  margin-bottom: -1px;
  min-height: 36px;
  background-color: #fafafb;
  border-top: 1px solid #e6e7eb;
  border-bottom: 1px solid #d4d7dc;
}
.n-ttop-title {
  z-index: 3;
  position: absolute;
  top: 0;
  right: unset;
  bottom: 0;
  left: 0;
  background-color: #fafafb;
}
.n-ttop-title:after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  height: 16px;
  margin-top: -8px;
  border-right: 1px solid #e6e7eb;
}
.n-ttop-tr {
  background-color: #fafafb;
}
.n-table-top .n-td {
  border-bottom-width: 0;
}
.n-table-top .n-td.n-tx-natural:last-child {
  position: relative;
}
.n-table-top .n-td:last-child:after {
  content: '';
  width: 30px;
  position: absolute;
  top: 0;
  right: unset;
  bottom: 0;
  left: 100%;
  background-color: #fafafb;
}
.n-table-footer {
  z-index: 2;
  overflow: hidden;
  position: relative;
  min-height: 36px;
  margin-top: -1px;
  background-color: #fafafb;
  border-top: 1px solid #d4d7dc;
  border-bottom: 1px solid #e6e7eb;
}
.n-table-has-scroll-left .n-table-footer,
.n-table-has-scroll-right .n-table-footer {
  margin-top: 0;
  border-top-color: #e6e7eb;
}
.n-tfoot-title {
  z-index: 3;
  position: absolute;
  top: 0;
  right: unset;
  bottom: 0;
  left: 0;
  background-color: #fafafb;
}
.n-tfoot-title:after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  height: 16px;
  margin-top: -8px;
  border-right: 1px solid #e6e7eb;
}
.n-tfoot-tr {
  background-color: #fafafb;
}
.n-tfoot-tr:last-child .n-td {
  border-bottom-width: 0;
}
.n-tfoot-tr:not(:last-child) .n-td:last-child:after {
  bottom: -1px;
  border-bottom: 1px solid #e6e7eb;
}
.n-table-footer .n-td.n-tx-natural:last-child {
  position: relative;
}
.n-table-footer .n-td:last-child:after {
  content: '';
  width: 30px;
  position: absolute;
  top: 0;
  right: unset;
  bottom: 0;
  left: 100%;
  background-color: #fafafb;
}
.n-table-setting {
  width: 24px;
  font-size: 16px;
  line-height: 32px;
  z-index: 2;
  right: 0;
  top: -33px;
  position: absolute;
  background-color: #f3f8fe;
}
.n-table-loading {
  pointer-events: none;
  z-index: 2;
}
.n-table-no-data {
  font-size: 13px;
  line-height: 24px;
  height: 100%;
  padding-top: 2px;
  color: #919293;
  position: relative;
}
.n-table-no-data-content {
  flex: auto;
  min-height: 32px;
}
.n-table-blank {
  height: 2px;
  border-bottom: 1px solid #e6e7eb;
}
.n-table-level-strong .n-table-header {
  border-top-width: 0;
  border-bottom-width: 0;
}
.n-table-level-strong .n-thead-tr {
  background-color: #d7e8fc;
}
.n-table-level-strong .n-table-setting {
  top: -32px;
  background-color: #d7e8fc;
}
.n-table-level-strong div.n-table-header,
.n-table-level-strong th.n-tx-sticky:before,
.n-table-level-strong th.n-tx-natural {
  border-color: #d5d6dd;
}
.n-table-level-strong .n-th:hover {
  background-color: #e6f0ff;
}
.n-table-level-strong .n-tbody-tr:hover {
  background-color: #e8f1fe;
}
.n-table-level-normal .n-td[rowspan]:not([rowspan="1"]) {
  background-color: #fff;
}
.n-table-level-normal .n-tbody-tr:hover {
  background-color: #f8fbfe;
}
.n-table-level-tiny .n-table-header {
  border-top: none;
  min-height: 24px;
  border-bottom-width: 0;
}
.n-table-level-tiny .n-td {
  border-bottom-width: 0;
}
.n-table-level-tiny .n-th-cell,
.n-table-level-tiny .n-td-cell {
  min-height: 24px;
  padding: 2px 6px;
  font-size: 12px;
  line-height: 20px;
}
.n-table-level-tiny .n-th-cell.normal,
.n-table-level-tiny .n-td-cell.normal {
  padding: 2px 6px;
}
.n-table-level-tiny .n-tbody-tr:nth-child(even) {
  background-color: #fafafb;
}
.n-table-level-tiny .n-tbody-tr:hover {
  background-color: #e7f1ff;
}
.n-table-body {
  overflow: auto;
  position: relative;
}
.n-table-body-ref {
  z-index: -1;
  visibility: hidden;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.n-table-virtual-y {
  width: 0;
  float: left;
}
.n-tbody-tr {
  background-color: #fff;
  transition: background-color 0.2s ease;
}
.n-tbody-tr-active {
  background-color: #e8f1fe;
}
.n-td {
  vertical-align: top;
  min-width: 0;
  min-height: 36px;
  height: 100%;
  border-bottom: 1px solid #e6e7eb;
}
.n-td-cell {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: #161616;
  font-size: 13px;
  line-height: 24px;
  padding: 6px 8px;
  min-height: 36px;
}
.n-td-cell.outer {
  padding: 0;
}
.n-td-cell.normal {
  padding: 6px 8px;
}
.n-td-center {
  text-align: center;
}
.n-td-center .n-td-justify-content {
  justify-content: center;
}
.n-td-right {
  text-align: right;
}
.n-td-right .n-td-justify-content {
  justify-content: flex-end;
}
.n-td-wrap {
  white-space: normal;
  word-break: break-all;
}
.n-tbody-tr-last {
  background-color: #fffbee;
}
.n-th-cell-select,
.n-td-cell-select {
  display: flex;
  align-items: center;
  justify-content: center;
}
.n-table-select-icon:not(.disabled) {
  cursor: pointer;
}
.n-td-cell-operation {
  padding: 0;
  display: flex;
  align-items: center;
}
.n-td-cell-operation-button {
  margin: 0 auto;
}
.n-td-cell-operation-options {
  padding-left: 3px;
  padding-right: 3px;
  margin-right: 8px;
}
.n-table-group {
  border-bottom: 1px solid #e6e7eb;
  background-color: #fafafb;
}
.n-table-group-sticky {
  left: 0;
  position: sticky;
  display: inline-flex;
  background-color: inherit;
}
.n-th-form-cell {
  background-color: #d7e8fc;
}
.n-th-form-cell .n-th-title:after {
  content: '(可编辑)';
  color: #606871;
  margin-left: 4px;
  font-weight: normal;
}
.n-td-form-cell {
  padding: 0;
  display: flex;
  align-items: center;
}
.n-td-form-cell .n-form-border-middle .n-form-value {
  padding-top: 7px;
  padding-bottom: 7px;
}
.n-tree-shape {
  width: 32px;
}
.n-tree-shape.active {
  transform: rotate(90deg);
}
.n-tree-shape-0 {
  margin-left: -8px;
}
.n-tree-shape-1 {
  margin-left: 12px;
}
.n-tree-shape-2 {
  margin-left: 32px;
}
.n-tree-shape-3 {
  margin-left: 52px;
}
.n-tree-shape-4 {
  margin-left: 72px;
}
.n-tree-shape-5 {
  margin-left: 92px;
}
.n-td-rows > .n-td-cell {
  padding-top: 3px;
  padding-bottom: 3px;
  min-height: 30px;
  border-bottom: 1px solid #e6e7eb;
}
.n-td-rows > .n-td-cell:last-child {
  border-bottom-width: 0;
}
.n-td-rows > .n-td-cell:nth-child(odd) {
  background-color: #fafafb;
  transition: background-color 0.2s ease;
}
.n-tbody-tr:hover .n-td-rows > .n-td-cell:nth-child(odd),
.n-tbody-tr-last .n-td-rows > .n-td-cell:nth-child(odd),
.n-tbody-tr-active .n-td-rows > .n-td-cell:nth-child(odd) {
  background-color: transparent;
}
.n-table-form-operation {
  display: flex;
  align-items: center;
  justify-content: center;
}
.n-table-form-button {
  padding-left: 3px;
  padding-right: 3px;
  margin: 0 4px;
}
.n-table-form-button .n-btn-i {
  line-height: 14px;
}
.n-table-form-no-data {
  color: #bbb;
}
.n-table-form-no-data-insert {
  color: #4275f4;
  cursor: pointer;
}
.n-table-form-no-data-insert:hover {
  text-decoration: underline;
}
.n-table-form .n-thead-tr {
  background-color: #ebf3fd;
}
.n-table-form .n-td-cell {
  min-height: 32px;
  line-height: 20px;
}
.n-table-form .n-table-no-data-content {
  min-height: 29px;
}
.n-table-form i.n-form-label-required {
  position: static;
}
.n-table-form .n-form-border-disabled {
  background-color: #f0f3f6;
}
.n-table-header {
  overflow: hidden;
  position: relative;
  border-top: 1px solid #e6e7eb;
  border-bottom: 1px solid #e6e7eb;
}
.n-thead-tr {
  background-color: #f3f8fe;
}
.n-th {
  vertical-align: middle;
  height: 100%;
  overflow: visible;
  min-width: 0;
  min-height: 36px;
  position: relative;
  background-color: inherit;
  transition: background-color 0.2s ease;
}
.n-th-cell {
  height: 32px;
  font-size: 13px;
  line-height: 24px;
  padding: 4px 8px;
  font-weight: bold;
  word-break: break-all;
  color: #161616;
  position: relative;
  text-align: left;
  display: flex;
  align-items: center;
}
.n-th-cell.outer {
  padding: 0;
}
.n-th-title {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-weight: inherit;
  max-width: 100%;
}
.n-th-center {
  justify-content: center;
}
.n-th-right {
  justify-content: flex-end;
}
.n-th-icon {
  flex-shrink: 0;
  margin-left: 4px;
}
.n-th:last-child:after {
  content: '';
  width: 30px;
  position: absolute;
  top: 0;
  right: unset;
  bottom: 0;
  left: 100%;
  background-color: inherit;
}
.n-th-resize {
  position: absolute;
  top: 0;
  right: -1px;
  bottom: 0;
  left: unset;
  width: 3px;
  opacity: 0;
  cursor: e-resize;
  transition: opacity 0.2s ease;
}
.n-th-resize-bar {
  z-index: 1;
  top: 2px;
  bottom: 2px;
  left: 1px;
  right: 1px;
  position: absolute;
  background-color: #0c6fff;
}
.n-th-resize-bar:before,
.n-th-resize-bar:after {
  content: '';
  position: absolute;
  top: 50%;
  margin-top: -3px;
  border: 3px solid transparent;
}
.n-th-resize-bar:before {
  right: 2px;
  border-left-width: 0;
}
.n-th-resize-bar:after {
  left: 2px;
  border-right-width: 0;
}
.n-th:hover .n-th-resize,
.n-th-resizing .n-th-resize {
  opacity: 1;
}
.n-th-resizing .n-th-resize-bar {
  transform: scaleX(1.5);
}
.n-th-resizing .n-th-resize-bar:before,
.n-th-resizing .n-th-resize-bar:after {
  border-right-color: #0c6fff;
  border-left-color: #0c6fff;
}
.n-tx-sticky[class] {
  z-index: 1;
  position: sticky;
  background-color: inherit;
}
.n-tx-sticky:before,
.n-tx-natural {
  border-left: 0 solid #e6e7eb;
  border-right: 0 solid #e6e7eb;
}
.n-tx-sticky-end:before,
.n-tx-sticky-start:before {
  content: '';
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  transition: box-shadow 0.2s ease;
}
.n-tx-sticky-end[class]:before {
  border-right-width: 1px;
}
.n-tx-sticky-start[class]:before {
  border-left-width: 1px;
}
.n-table-has-scroll-left .n-tx-sticky-end:before {
  box-shadow: 4px 0 4px -2px rgba(0,0,0,0.06);
}
.n-table-has-scroll-right .n-tx-sticky-start:before {
  box-shadow: -4px 0 4px -2px rgba(0,0,0,0.06);
}
.n-table-fill-border .n-table-top,
.n-table-fill-border .n-table-header,
.n-table-fill-border .n-table-footer {
  border: 1px solid #e6e7eb;
}
.n-table-fill-border .n-table-main {
  border-left: 1px solid #e6e7eb;
  border-right: 1px solid #e6e7eb;
}
.n-table-fill-border .n-tx-sticky:before {
  content: '';
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
}
.n-table-fill-border .n-tx-sticky-end:before {
  right: -1px;
}
.n-table-fill-border .n-tx-sticky:before,
.n-table-fill-border .n-tx-natural {
  border-left-width: 1px;
}
.n-table-fill-border .n-tx-sticky-0:before,
.n-table-fill-border .n-tx-natural-0 {
  border-left-width: 0;
}
.n-table-fill-border .n-td.n-tx-sticky:before {
  bottom: -1px;
  border-bottom: 1px solid #e6e7eb;
}
.n-tx-vertical-middle {
  vertical-align: middle;
}
.n-tx-vertical-bottom {
  vertical-align: bottom;
}
.n-tag {
  padding: 0 5px;
  font-size: 12px;
  line-height: 18px;
  display: inline-block;
  border-radius: 4px;
  border: 1px solid transparent;
}
.n-tag-strong {
  color: #fff;
}
.n-tag-strong.n-tag-primary {
  background-color: #1776f2;
}
.n-tag-strong.n-tag-warning {
  background-color: #f66a06;
}
.n-tag-strong.n-tag-danger {
  background-color: #fc333d;
}
.n-tag-strong.n-tag-success {
  background-color: #23a609;
}
.n-tag-strong.n-tag-special {
  background-color: #ee9e00;
}
.n-tag-strong.n-tag-normal {
  background-color: #8c99b6;
}
.n-tag-strong.n-tag-available,
.n-tag-strong.n-tag-disabled {
  background-color: #a8aaac;
}
.n-tag-strong.n-tag-purple {
  background-color: #8a3fd4;
}
.n-tag-strong.n-tag-cyan {
  background-color: #0facc2;
}
.n-tag-strong.n-tag-pinkpurple {
  background-color: #ec4589;
}
.n-tag-strong.n-tag-greypurple {
  background-color: #9456a6;
}
.n-tag-strong.n-tag-greyblue {
  background-color: #5858ae;
}
.n-tag-strong.n-tag-brown {
  background-color: #be6d06;
}
.n-tag-weak.n-tag-primary {
  color: #0022a0;
  background-color: #deecfd;
}
.n-tag-weak.n-tag-warning {
  color: #b63900;
  background-color: #feede1;
}
.n-tag-weak.n-tag-danger {
  color: #c80020;
  background-color: #ffebec;
}
.n-tag-weak.n-tag-success {
  color: #006f00;
  background-color: #e5f4e1;
}
.n-tag-weak.n-tag-special {
  color: #905600;
  background-color: #fcf0d9;
}
.n-tag-weak.n-tag-normal {
  color: #333f58;
  background-color: #e8ebf0;
}
.n-tag-weak.n-tag-available,
.n-tag-weak.n-tag-disabled {
  color: #5a6373;
  background-color: #f0f1f3;
}
.n-tag-weak.n-tag-purple {
  color: #5600aa;
  background-color: #ede2f9;
}
.n-tag-weak.n-tag-cyan {
  color: #005058;
  background-color: #dbf3f6;
}
.n-tag-weak.n-tag-pinkpurple {
  color: #b10048;
  background-color: #fce3ed;
}
.n-tag-weak.n-tag-greypurple {
  color: #6c008a;
  background-color: #efe6f2;
}
.n-tag-weak.n-tag-greyblue {
  color: #090999;
  background-color: #e6e6f3;
}
.n-tag-weak.n-tag-brown {
  color: #7c4500;
  background-color: #f5e9da;
}
.n-tag-ghost {
  background-color: transparent;
}
.n-tag-ghost.n-tag-primary {
  color: #004cb0;
  border-color: #c7defc;
}
.n-tag-ghost.n-tag-warning {
  color: #cf5600;
  border-color: #fddbc3;
}
.n-tag-ghost.n-tag-danger {
  color: #e10f19;
  border-color: #fed6d8;
}
.n-tag-ghost.n-tag-success {
  color: #1b8905;
  border-color: #caeac4;
}
.n-tag-ghost.n-tag-special {
  color: #a67800;
  border-color: #f9dda6;
}
.n-tag-ghost.n-tag-normal {
  color: #333f58;
  border-color: #d1d6e2;
}
.n-tag-ghost.n-tag-available,
.n-tag-ghost.n-tag-disabled {
  color: #5a6373;
  border-color: #e6e7eb;
}
.n-tag-ghost.n-tag-purple {
  color: #720dd6;
  border-color: #e2cff4;
}
.n-tag-ghost.n-tag-cyan {
  color: #007680;
  border-color: #b7e6ed;
}
.n-tag-ghost.n-tag-pinkpurple {
  color: #c2004f;
  border-color: #fac9dd;
}
.n-tag-ghost.n-tag-greypurple {
  color: #7a069a;
  border-color: #d4bbdb;
}
.n-tag-ghost.n-tag-greyblue {
  color: #1e1eb0;
  border-color: #bcbcdf;
}
.n-tag-ghost.n-tag-brown {
  color: #a86006;
  border-color: #dfcaaf;
}
.n-tip {
  display: inline-block;
}
.n-tip-normal {
  min-width: 116px;
  padding: 12px;
}
.n-tip-dark {
  color: #fff;
  padding: 16px;
  background-color: #313233;
}
.n-tip-info {
  color: #fff;
  padding: 4px 12px;
  border-radius: 2px;
  background-color: #313233;
}
.n-tip-content {
  padding: 0 4px;
  text-align: inherit;
  white-space: pre-wrap;
}
.n-tip-enter-active,
.n-tip-leave-active {
  transition: opacity 0.1s ease;
}
.n-tip-enter,
.n-tip-leave-to {
  opacity: 0;
}
.n-ellipsis-1 {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.n-ellipsis-2,
.n-ellipsis-3,
.n-ellipsis-4,
.n-ellipsis-5,
.n-ellipsis-6 {
  overflow: hidden;
  display: -webkit-box;
  word-break: break-all;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
}
.n-ellipsis-2 {
  -webkit-line-clamp: 2;
}
.n-ellipsis-3 {
  -webkit-line-clamp: 3;
}
.n-ellipsis-4 {
  -webkit-line-clamp: 4;
}
.n-ellipsis-5 {
  -webkit-line-clamp: 5;
}
.n-ellipsis-6 {
  -webkit-line-clamp: 6;
}
.n-tip-directive {
  left: 0;
  top: 0;
  position: fixed;
  visibility: hidden;
  max-width: 50vw;
}
.n-toast {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  height: 0;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.n-toast-position {
  height: 0;
}
.n-toast-box {
  margin-top: 70px;
  display: flex;
  align-items: center;
  padding: 12px 16px;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 2px 8px 0 rgba(22,22,22,0.25);
}
.n-toast-icon {
  line-height: 22px;
  margin-right: 8px;
}
.n-toast-content {
  font-size: 14px;
  line-height: 22px;
  min-width: 84px;
  text-align: center;
}
.n-toast-success {
  color: #27c000;
}
.n-toast-warning {
  color: #ff6b00;
}
.n-toast-error {
  color: #ee2e14;
}
.n-toast-enter-active,
.n-toast-leave-active {
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.n-toast-enter,
.n-toast-leave-to {
  opacity: 0;
  transform: translateY(-50px);
}
.n-tree-line {
  font-size: 12px;
  line-height: 20px;
  color: #191919;
  display: flex;
  align-items: center;
  min-height: 32px;
}
.n-tree-line-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 4px;
  transition: transform 0.2s ease;
}
.n-tree-line-expand .n-tree-line-icon {
  transform: rotate(90deg);
}
.n-tree-line-label {
  flex: auto;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin-right: 4px;
}
.n-tree-line-active {
  color: #0c6fff;
}
.n-tree-line-trigger-line,
.n-tree-line-trigger-label .n-tree-line-label {
  cursor: pointer;
}
.n-upload {
  display: inline-block;
}
.n-upload-input {
  display: none;
}
.n-virtual-list {
  overflow: auto;
}
.n-tree-virtual-line {
  font-size: 12px;
  line-height: 20px;
  color: #191919;
  display: flex;
  align-items: center;
  min-height: 32px;
}
.n-tree-virtual-line:hover {
  background-color: #e8f1fe;
}
.n-tree-virtual-line-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 4px;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.n-tree-virtual-line-expand .n-tree-virtual-line-icon {
  transform: rotate(90deg);
}
.n-tree-virtual-line-label {
  flex: auto;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin-right: 4px;
}
.n-tree-virtual-line-active {
  color: #0c6fff;
}
.n-tree-virtual-line-trigger-line {
  cursor: pointer;
}
.n-tree-virtual-line-change {
  background-color: #e8f1fe;
}
.n-form-textarea {
  width: 100%;
  min-height: 30px;
  line-height: 20px;
  position: relative;
}
.markdown-body {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  margin: 0;
  color: #24292f;
  background-color: transparent;
  font-size: 14px;
  line-height: 1.5;
  word-wrap: break-word;
}
.markdown-body .octicon {
  display: inline-block;
  fill: currentColor;
  vertical-align: text-bottom;
}
.markdown-body h1:hover .anchor .octicon-link:before,
.markdown-body h2:hover .anchor .octicon-link:before,
.markdown-body h3:hover .anchor .octicon-link:before,
.markdown-body h4:hover .anchor .octicon-link:before,
.markdown-body h5:hover .anchor .octicon-link:before,
.markdown-body h6:hover .anchor .octicon-link:before {
  width: 16px;
  height: 16px;
  content: " ";
  display: inline-block;
  background-color: currentColor;
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' version='1.1' aria-hidden='true'><path fill-rule='evenodd' d='M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z'></path></svg>");
}
.markdown-body details,
.markdown-body figcaption,
.markdown-body figure {
  display: block;
}
.markdown-body summary {
  display: list-item;
}
.markdown-body [hidden] {
  display: none !important;
}
.markdown-body a {
  background-color: transparent;
  color: #0969da;
  text-decoration: none;
}
.markdown-body abbr[title] {
  border-bottom: none;
  text-decoration: underline dotted;
}
.markdown-body b,
.markdown-body strong {
  font-weight: 600;
}
.markdown-body dfn {
  font-style: italic;
}
.markdown-body h1 {
  margin: 0.67em 0;
  font-weight: 600;
  padding-bottom: 0.3em;
  font-size: 2em;
  border-bottom: 1px solid #d8dee4;
}
.markdown-body mark {
  background-color: #fff8c5;
  color: #24292f;
}
.markdown-body small {
  font-size: 90%;
}
.markdown-body sub,
.markdown-body sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
.markdown-body sub {
  bottom: -0.25em;
}
.markdown-body sup {
  top: -0.5em;
}
.markdown-body img {
  border-style: none;
  max-width: 100%;
  box-sizing: content-box;
  background-color: transparent;
}
.markdown-body code,
.markdown-body kbd,
.markdown-body pre,
.markdown-body samp {
  font-family: monospace;
  font-size: 1em;
}
.markdown-body figure {
  margin: 1em 40px;
}
.markdown-body hr {
  box-sizing: content-box;
  overflow: hidden;
  height: 0.25em;
  padding: 0;
  margin: 24px 0;
  background-color: #d0d7de;
  border: 0;
}
.markdown-body input {
  font: inherit;
  margin: 0;
  overflow: visible;
  line-height: inherit;
}
.markdown-body [type="button"],
.markdown-body [type="reset"],
.markdown-body [type="submit"] {
  -webkit-appearance: button;
}
.markdown-body [type="checkbox"],
.markdown-body [type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
.markdown-body [type="number"]::-webkit-inner-spin-button,
.markdown-body [type="number"]::-webkit-outer-spin-button {
  height: auto;
}
.markdown-body [type="search"]::-webkit-search-cancel-button,
.markdown-body [type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
.markdown-body ::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}
.markdown-body ::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
.markdown-body a:hover {
  text-decoration: underline;
}
.markdown-body ::placeholder {
  color: #6e7781;
  opacity: 1;
}
.markdown-body hr::before {
  display: table;
  content: "";
}
.markdown-body hr::after {
  display: table;
  clear: both;
  content: "";
}
.markdown-body table {
  border-spacing: 0;
  border-collapse: collapse;
  display: block;
  width: max-content;
  max-width: 100%;
  overflow: auto;
}
.markdown-body td,
.markdown-body th {
  padding: 0;
}
.markdown-body details summary {
  cursor: pointer;
}
.markdown-body details:not([open]) > *:not(summary) {
  display: none !important;
}
.markdown-body a:focus,
.markdown-body [role="button"]:focus,
.markdown-body input[type="radio"]:focus,
.markdown-body input[type="checkbox"]:focus {
  outline: 2px solid #0969da;
  outline-offset: -2px;
  box-shadow: none;
}
.markdown-body a:focus:not(:focus-visible),
.markdown-body [role="button"]:focus:not(:focus-visible),
.markdown-body input[type="radio"]:focus:not(:focus-visible),
.markdown-body input[type="checkbox"]:focus:not(:focus-visible) {
  outline: solid 1px transparent;
}
.markdown-body a:focus-visible,
.markdown-body [role="button"]:focus-visible,
.markdown-body input[type="radio"]:focus-visible,
.markdown-body input[type="checkbox"]:focus-visible {
  outline: 2px solid #0969da;
  outline-offset: -2px;
  box-shadow: none;
}
.markdown-body a:not([class]):focus,
.markdown-body a:not([class]):focus-visible,
.markdown-body input[type="radio"]:focus,
.markdown-body input[type="radio"]:focus-visible,
.markdown-body input[type="checkbox"]:focus,
.markdown-body input[type="checkbox"]:focus-visible {
  outline-offset: 0;
}
.markdown-body kbd {
  display: inline-block;
  padding: 3px 5px;
  font: 11px ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, Liberation Mono, monospace;
  line-height: 10px;
  color: #24292f;
  vertical-align: middle;
  background-color: #f6f8fa;
  border: solid 1px rgba(175,184,193,0.2);
  border-bottom-color: rgba(175,184,193,0.2);
  border-radius: 6px;
  box-shadow: inset 0 -1px 0 rgba(175,184,193,0.2);
}
.markdown-body h1,
.markdown-body h2,
.markdown-body h3,
.markdown-body h4,
.markdown-body h5,
.markdown-body h6 {
  margin-top: 24px;
  margin-bottom: 16px;
  font-weight: 600;
  line-height: 1.25;
}
.markdown-body h2 {
  font-weight: 600;
  padding-bottom: 0.3em;
  font-size: 1.5em;
  border-bottom: 1px solid #d8dee4;
}
.markdown-body h3 {
  font-weight: 600;
  font-size: 1.25em;
}
.markdown-body h4 {
  font-weight: 600;
  font-size: 1em;
}
.markdown-body h5 {
  font-weight: 600;
  font-size: 0.875em;
}
.markdown-body h6 {
  font-weight: 600;
  font-size: 0.85em;
  color: #57606a;
}
.markdown-body p {
  margin-top: 0;
  margin-bottom: 10px;
}
.markdown-body blockquote {
  margin: 0;
  padding: 0 1em;
  color: #57606a;
  border-left: 0.25em solid #d0d7de;
}
.markdown-body ul,
.markdown-body ol {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 2em;
}
.markdown-body ol ol,
.markdown-body ul ol {
  list-style-type: lower-roman;
}
.markdown-body ul ul ol,
.markdown-body ul ol ol,
.markdown-body ol ul ol,
.markdown-body ol ol ol {
  list-style-type: lower-alpha;
}
.markdown-body dd {
  margin-left: 0;
}
.markdown-body tt,
.markdown-body code,
.markdown-body samp {
  font-family: ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, Liberation Mono, monospace;
  font-size: 12px;
}
.markdown-body pre {
  margin-top: 0;
  margin-bottom: 0;
  font-family: ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, Liberation Mono, monospace;
  font-size: 12px;
  word-wrap: normal;
}
.markdown-body .octicon {
  display: inline-block;
  overflow: visible !important;
  vertical-align: text-bottom;
  fill: currentColor;
}
.markdown-body input::-webkit-outer-spin-button,
.markdown-body input::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
  appearance: none;
}
.markdown-body::before {
  display: table;
  content: "";
}
.markdown-body::after {
  display: table;
  clear: both;
  content: "";
}
.markdown-body > *:first-child {
  margin-top: 0 !important;
}
.markdown-body > *:last-child {
  margin-bottom: 0 !important;
}
.markdown-body a:not([href]) {
  color: inherit;
  text-decoration: none;
}
.markdown-body .absent {
  color: #cf222e;
}
.markdown-body .anchor {
  float: left;
  padding-right: 4px;
  margin-left: -20px;
  line-height: 1;
}
.markdown-body .anchor:focus {
  outline: none;
}
.markdown-body p,
.markdown-body blockquote,
.markdown-body ul,
.markdown-body ol,
.markdown-body dl,
.markdown-body table,
.markdown-body pre,
.markdown-body details {
  margin-top: 0;
  margin-bottom: 16px;
}
.markdown-body blockquote > :first-child {
  margin-top: 0;
}
.markdown-body blockquote > :last-child {
  margin-bottom: 0;
}
.markdown-body h1 .octicon-link,
.markdown-body h2 .octicon-link,
.markdown-body h3 .octicon-link,
.markdown-body h4 .octicon-link,
.markdown-body h5 .octicon-link,
.markdown-body h6 .octicon-link {
  color: #24292f;
  vertical-align: middle;
  visibility: hidden;
}
.markdown-body h1:hover .anchor,
.markdown-body h2:hover .anchor,
.markdown-body h3:hover .anchor,
.markdown-body h4:hover .anchor,
.markdown-body h5:hover .anchor,
.markdown-body h6:hover .anchor {
  text-decoration: none;
}
.markdown-body h1:hover .anchor .octicon-link,
.markdown-body h2:hover .anchor .octicon-link,
.markdown-body h3:hover .anchor .octicon-link,
.markdown-body h4:hover .anchor .octicon-link,
.markdown-body h5:hover .anchor .octicon-link,
.markdown-body h6:hover .anchor .octicon-link {
  visibility: visible;
}
.markdown-body h1 tt,
.markdown-body h1 code,
.markdown-body h2 tt,
.markdown-body h2 code,
.markdown-body h3 tt,
.markdown-body h3 code,
.markdown-body h4 tt,
.markdown-body h4 code,
.markdown-body h5 tt,
.markdown-body h5 code,
.markdown-body h6 tt,
.markdown-body h6 code {
  padding: 0 0.2em;
  font-size: inherit;
}
.markdown-body summary h1,
.markdown-body summary h2,
.markdown-body summary h3,
.markdown-body summary h4,
.markdown-body summary h5,
.markdown-body summary h6 {
  display: inline-block;
}
.markdown-body summary h1 .anchor,
.markdown-body summary h2 .anchor,
.markdown-body summary h3 .anchor,
.markdown-body summary h4 .anchor,
.markdown-body summary h5 .anchor,
.markdown-body summary h6 .anchor {
  margin-left: -40px;
}
.markdown-body summary h1,
.markdown-body summary h2 {
  padding-bottom: 0;
  border-bottom: 0;
}
.markdown-body ul.no-list,
.markdown-body ol.no-list {
  padding: 0;
  list-style-type: none;
}
.markdown-body ol[type="a"] {
  list-style-type: lower-alpha;
}
.markdown-body ol[type="A"] {
  list-style-type: upper-alpha;
}
.markdown-body ol[type="i"] {
  list-style-type: lower-roman;
}
.markdown-body ol[type="I"] {
  list-style-type: upper-roman;
}
.markdown-body ol[type="1"] {
  list-style-type: decimal;
}
.markdown-body div > ol:not([type]) {
  list-style-type: decimal;
}
.markdown-body ul ul,
.markdown-body ul ol,
.markdown-body ol ol,
.markdown-body ol ul {
  margin-top: 0;
  margin-bottom: 0;
}
.markdown-body li > p {
  margin-top: 16px;
}
.markdown-body li + li {
  margin-top: 0.25em;
}
.markdown-body dl {
  padding: 0;
}
.markdown-body dl dt {
  padding: 0;
  margin-top: 16px;
  font-size: 1em;
  font-style: italic;
  font-weight: 600;
}
.markdown-body dl dd {
  padding: 0 16px;
  margin-bottom: 16px;
}
.markdown-body table th {
  font-weight: 600;
}
.markdown-body table th,
.markdown-body table td {
  padding: 6px 13px;
  border: 1px solid #d0d7de;
}
.markdown-body table th[style="text-align:right"],
.markdown-body table td[style="text-align:right"] {
  white-space: nowrap;
}
.markdown-body table tr {
  background-color: transparent;
  border-top: 1px solid #d8dee4;
}
.markdown-body table tr:nth-child(2n) {
  background-color: #f6f8fa;
}
.markdown-body table img {
  background-color: transparent;
}
.markdown-body img[align="right"] {
  padding-left: 20px;
}
.markdown-body img[align="left"] {
  padding-right: 20px;
}
.markdown-body .emoji {
  max-width: none;
  vertical-align: text-top;
  background-color: transparent;
}
.markdown-body span.frame {
  display: block;
  overflow: hidden;
}
.markdown-body span.frame > span {
  display: block;
  float: left;
  width: auto;
  padding: 7px;
  margin: 13px 0 0;
  overflow: hidden;
  border: 1px solid #d0d7de;
}
.markdown-body span.frame span img {
  display: block;
  float: left;
}
.markdown-body span.frame span span {
  display: block;
  padding: 5px 0 0;
  clear: both;
  color: #24292f;
}
.markdown-body span.align-center {
  display: block;
  overflow: hidden;
  clear: both;
}
.markdown-body span.align-center > span {
  display: block;
  margin: 13px auto 0;
  overflow: hidden;
  text-align: center;
}
.markdown-body span.align-center span img {
  margin: 0 auto;
  text-align: center;
}
.markdown-body span.align-right {
  display: block;
  overflow: hidden;
  clear: both;
}
.markdown-body span.align-right > span {
  display: block;
  margin: 13px 0 0;
  overflow: hidden;
  text-align: right;
}
.markdown-body span.align-right span img {
  margin: 0;
  text-align: right;
}
.markdown-body span.float-left {
  display: block;
  float: left;
  margin-right: 13px;
  overflow: hidden;
}
.markdown-body span.float-left span {
  margin: 13px 0 0;
}
.markdown-body span.float-right {
  display: block;
  float: right;
  margin-left: 13px;
  overflow: hidden;
}
.markdown-body span.float-right > span {
  display: block;
  margin: 13px auto 0;
  overflow: hidden;
  text-align: right;
}
.markdown-body code,
.markdown-body tt {
  padding: 0.2em 0.4em;
  margin: 0;
  font-size: 85%;
  white-space: break-spaces;
  background-color: rgba(175,184,193,0.2);
  border-radius: 6px;
}
.markdown-body code br,
.markdown-body tt br {
  display: none;
}
.markdown-body del code {
  text-decoration: inherit;
}
.markdown-body samp {
  font-size: 85%;
}
.markdown-body pre code {
  font-size: 100%;
}
.markdown-body pre > code {
  padding: 0;
  margin: 0;
  word-break: normal;
  white-space: pre;
  background: transparent;
  border: 0;
}
.markdown-body .highlight {
  margin-bottom: 16px;
}
.markdown-body .highlight pre {
  margin-bottom: 0;
  word-break: normal;
}
.markdown-body .highlight pre,
.markdown-body pre {
  padding: 16px 16px 8px 16px;
  overflow: auto;
  font-size: 85%;
  line-height: 1.45;
  border-radius: 6px;
  direction: ltr;
}
.markdown-body pre code,
.markdown-body pre tt {
  display: inline-block;
  max-width: 100%;
  padding: 0;
  margin: 0;
  overflow-x: scroll;
  line-height: inherit;
  word-wrap: normal;
  background-color: transparent;
  border: 0;
}
.markdown-body .csv-data td,
.markdown-body .csv-data th {
  padding: 5px;
  overflow: hidden;
  font-size: 12px;
  line-height: 1;
  text-align: left;
  white-space: nowrap;
}
.markdown-body .csv-data .blob-num {
  padding: 10px 8px 9px;
  text-align: right;
  background: transparent;
  border: 0;
}
.markdown-body .csv-data tr {
  border-top: 0;
}
.markdown-body .csv-data th {
  font-weight: 600;
  background: #f6f8fa;
  border-top: 0;
}
.markdown-body [data-footnote-ref]::before {
  content: "[";
}
.markdown-body [data-footnote-ref]::after {
  content: "]";
}
.markdown-body .footnotes {
  font-size: 12px;
  color: #57606a;
  border-top: 1px solid #d0d7de;
}
.markdown-body .footnotes ol {
  padding-left: 16px;
}
.markdown-body .footnotes ol ul {
  display: inline-block;
  padding-left: 16px;
  margin-top: 16px;
}
.markdown-body .footnotes li {
  position: relative;
}
.markdown-body .footnotes li:target::before {
  position: absolute;
  top: -8px;
  right: -8px;
  bottom: -8px;
  left: -24px;
  pointer-events: none;
  content: "";
  border: 2px solid #0969da;
  border-radius: 6px;
}
.markdown-body .footnotes li:target {
  color: #24292f;
}
.markdown-body .footnotes .data-footnote-backref g-emoji {
  font-family: monospace;
}
.markdown-body .pl-c {
  color: #6e7781;
}
.markdown-body .pl-c1,
.markdown-body .pl-s .pl-v {
  color: #0550ae;
}
.markdown-body .pl-e,
.markdown-body .pl-en {
  color: #8250df;
}
.markdown-body .pl-smi,
.markdown-body .pl-s .pl-s1 {
  color: #24292f;
}
.markdown-body .pl-ent {
  color: #116329;
}
.markdown-body .pl-k {
  color: #cf222e;
}
.markdown-body .pl-s,
.markdown-body .pl-pds,
.markdown-body .pl-s .pl-pse .pl-s1,
.markdown-body .pl-sr,
.markdown-body .pl-sr .pl-cce,
.markdown-body .pl-sr .pl-sre,
.markdown-body .pl-sr .pl-sra {
  color: #0a3069;
}
.markdown-body .pl-v,
.markdown-body .pl-smw {
  color: #953800;
}
.markdown-body .pl-bu {
  color: #82071e;
}
.markdown-body .pl-ii {
  color: #f6f8fa;
  background-color: #82071e;
}
.markdown-body .pl-c2 {
  color: #f6f8fa;
  background-color: #cf222e;
}
.markdown-body .pl-sr .pl-cce {
  font-weight: bold;
  color: #116329;
}
.markdown-body .pl-ml {
  color: #3b2300;
}
.markdown-body .pl-mh,
.markdown-body .pl-mh .pl-en,
.markdown-body .pl-ms {
  font-weight: bold;
  color: #0550ae;
}
.markdown-body .pl-mi {
  font-style: italic;
  color: #24292f;
}
.markdown-body .pl-mb {
  font-weight: bold;
  color: #24292f;
}
.markdown-body .pl-md {
  color: #82071e;
  background-color: #ffebe9;
}
.markdown-body .pl-mi1 {
  color: #116329;
  background-color: #dafbe1;
}
.markdown-body .pl-mc {
  color: #953800;
  background-color: #ffd8b5;
}
.markdown-body .pl-mi2 {
  color: #eaeef2;
  background-color: #0550ae;
}
.markdown-body .pl-mdr {
  font-weight: bold;
  color: #8250df;
}
.markdown-body .pl-ba {
  color: #57606a;
}
.markdown-body .pl-sg {
  color: #8c959f;
}
.markdown-body .pl-corl {
  text-decoration: underline;
  color: #0a3069;
}
.markdown-body g-emoji {
  display: inline-block;
  min-width: 1ch;
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 1em;
  font-style: normal !important;
  font-weight: 400;
  line-height: 1;
  vertical-align: -0.075em;
}
.markdown-body g-emoji img {
  width: 1em;
  height: 1em;
}
.markdown-body .task-list-item {
  list-style-type: none;
}
.markdown-body .task-list-item label {
  font-weight: 400;
}
.markdown-body .task-list-item.enabled label {
  cursor: pointer;
}
.markdown-body .task-list-item + .task-list-item {
  margin-top: 4px;
}
.markdown-body .task-list-item .handle {
  display: none;
}
.markdown-body .task-list-item-checkbox {
  margin: 0 0.2em 0.25em -1.4em;
  vertical-align: middle;
}
.markdown-body .contains-task-list:dir(rtl) .task-list-item-checkbox {
  margin: 0 -1.6em 0.25em 0.2em;
}
.markdown-body .contains-task-list {
  position: relative;
}
.markdown-body .contains-task-list:hover .task-list-item-convert-container,
.markdown-body .contains-task-list:focus-within .task-list-item-convert-container {
  display: block;
  width: auto;
  height: 24px;
  overflow: visible;
  clip: auto;
}
.markdown-body ::-webkit-calendar-picker-indicator {
  filter: invert(50%);
}
.markdown-body .mermaid {
  border: 1px solid #dedede;
  margin-bottom: 10px;
  border-radius: 4px;
  padding: 10px;
  background-color: #fff;
}
#dmermaid {
  display: none;
}
.markdown-body ul li {
  list-style: disc;
}
.markdown-body ol li {
  list-style: decimal;
}
.markdown-body pre {
  padding: 0;
}
.markdown-body pre,
.markdown-body code {
  font-family: Consolas, Monaco, "Andale Mono", "Ubuntu Mono", monospace;
}
.markdown-body pre code {
  display: block;
  overflow-x: auto;
  padding: 1em;
}
.markdown-body code {
  padding: 3px 5px;
}
.markdown-body .hljs,
.markdown-body pre {
  background: #1a1b26;
  color: #cbd2ea;
}
/*
  Theme: Tokyo-night-Dark
  origin: https://github.com/enkia/tokyo-night-vscode-theme
  Description: Original highlight.js style
  Author: (c) Henri Vandersleyen <hvandersleyen@gmail.com>
  License: see project LICENSE
  Touched: 2022
*/
.markdown-body .hljs-comment,
.markdown-body .hljs-meta {
  color: #565f89;
}
.markdown-body .hljs-deletion,
.markdown-body .hljs-doctag,
.markdown-body .hljs-regexp,
.markdown-body .hljs-selector-attr,
.markdown-body .hljs-selector-class,
.markdown-body .hljs-selector-id,
.markdown-body .hljs-selector-pseudo,
.markdown-body .hljs-tag,
.markdown-body .hljs-template-tag,
.markdown-body .hljs-variable.language_ {
  color: #f7768e;
}
.markdown-body .hljs-link,
.markdown-body .hljs-literal,
.markdown-body .hljs-number,
.markdown-body .hljs-params,
.markdown-body .hljs-template-variable,
.markdown-body .hljs-type,
.markdown-body .hljs-variable {
  color: #ff9e64;
}
.markdown-body .hljs-attribute,
.markdown-body .hljs-built_in {
  color: #e0af68;
}
.markdown-body .hljs-keyword,
.markdown-body .hljs-property,
.markdown-body .hljs-subst,
.markdown-body .hljs-title,
.markdown-body .hljs-title.class_,
.markdown-body .hljs-title.class_.inherited__,
.markdown-body .hljs-title.function_ {
  color: #7dcfff;
}
.markdown-body .hljs-selector-tag {
  color: #73daca;
}
.markdown-body .hljs-addition,
.markdown-body .hljs-bullet,
.markdown-body .hljs-quote,
.markdown-body .hljs-string,
.markdown-body .hljs-symbol {
  color: #9ece6a;
}
.markdown-body .hljs-code,
.markdown-body .hljs-formula,
.markdown-body .hljs-section {
  color: #7aa2f7;
}
.markdown-body .hljs-attr,
.markdown-body .hljs-char.escape_,
.markdown-body .hljs-keyword,
.markdown-body .hljs-name,
.markdown-body .hljs-operator {
  color: #bb9af7;
}
.markdown-body .hljs-punctuation {
  color: #c0caf5;
}
.markdown-body .hljs-emphasis {
  font-style: italic;
}
.markdown-body .hljs-strong {
  font-weight: 700;
}
.markdown-body .ni-share--after:after {
  display: inline-block;
  vertical-align: middle;
  margin-left: 2px;
  font-size: 15px;
  line-height: 12px;
}
