/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */

/* stylelint-disable no-duplicate-selectors */

/* stylelint-disable */

/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */

@-webkit-keyframes antCheckboxEffect {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }

  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

@keyframes antCheckboxEffect {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }

  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

.ant-tree.ant-tree-directory {
  position: relative;
}

.ant-tree.ant-tree-directory > li span.ant-tree-switcher,
.ant-tree.ant-tree-directory .ant-tree-child-tree > li span.ant-tree-switcher {
  position: relative;
  z-index: 1;
}

.ant-tree.ant-tree-directory > li span.ant-tree-switcher.ant-tree-switcher-noop,
.ant-tree.ant-tree-directory .ant-tree-child-tree > li span.ant-tree-switcher.ant-tree-switcher-noop {
  pointer-events: none;
}

.ant-tree.ant-tree-directory > li span.ant-tree-checkbox,
.ant-tree.ant-tree-directory .ant-tree-child-tree > li span.ant-tree-checkbox {
  position: relative;
  z-index: 1;
}

.ant-tree.ant-tree-directory > li span.ant-tree-node-content-wrapper,
.ant-tree.ant-tree-directory .ant-tree-child-tree > li span.ant-tree-node-content-wrapper {
  border-radius: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.ant-tree.ant-tree-directory > li span.ant-tree-node-content-wrapper:hover,
.ant-tree.ant-tree-directory .ant-tree-child-tree > li span.ant-tree-node-content-wrapper:hover {
  background: transparent;
}

.ant-tree.ant-tree-directory > li span.ant-tree-node-content-wrapper:hover::before,
.ant-tree.ant-tree-directory .ant-tree-child-tree > li span.ant-tree-node-content-wrapper:hover::before {
  background: #e6f7ff;
}

.ant-tree.ant-tree-directory > li span.ant-tree-node-content-wrapper.ant-tree-node-selected,
.ant-tree.ant-tree-directory .ant-tree-child-tree > li span.ant-tree-node-content-wrapper.ant-tree-node-selected {
  color: #fff;
  background: transparent;
}

.ant-tree.ant-tree-directory > li span.ant-tree-node-content-wrapper::before,
.ant-tree.ant-tree-directory .ant-tree-child-tree > li span.ant-tree-node-content-wrapper::before {
  position: absolute;
  right: 0;
  left: 0;
  height: 1.5rem;
  transition: all 0.3s;
  content: '';
}

.ant-tree.ant-tree-directory > li span.ant-tree-node-content-wrapper > span,
.ant-tree.ant-tree-directory .ant-tree-child-tree > li span.ant-tree-node-content-wrapper > span {
  position: relative;
  z-index: 1;
}

.ant-tree.ant-tree-directory > li.ant-tree-treenode-selected > span.ant-tree-switcher,
.ant-tree.ant-tree-directory .ant-tree-child-tree > li.ant-tree-treenode-selected > span.ant-tree-switcher {
  color: #fff;
}

.ant-tree.ant-tree-directory > li.ant-tree-treenode-selected > span.ant-tree-checkbox .ant-tree-checkbox-inner,
.ant-tree.ant-tree-directory .ant-tree-child-tree > li.ant-tree-treenode-selected > span.ant-tree-checkbox .ant-tree-checkbox-inner {
  border-color: #1890ff;
}

.ant-tree.ant-tree-directory > li.ant-tree-treenode-selected > span.ant-tree-checkbox.ant-tree-checkbox-checked::after,
.ant-tree.ant-tree-directory .ant-tree-child-tree > li.ant-tree-treenode-selected > span.ant-tree-checkbox.ant-tree-checkbox-checked::after {
  border-color: #fff;
}

.ant-tree.ant-tree-directory > li.ant-tree-treenode-selected > span.ant-tree-checkbox.ant-tree-checkbox-checked .ant-tree-checkbox-inner,
.ant-tree.ant-tree-directory .ant-tree-child-tree > li.ant-tree-treenode-selected > span.ant-tree-checkbox.ant-tree-checkbox-checked .ant-tree-checkbox-inner {
  background: #fff;
}

.ant-tree.ant-tree-directory > li.ant-tree-treenode-selected > span.ant-tree-checkbox.ant-tree-checkbox-checked .ant-tree-checkbox-inner::after,
.ant-tree.ant-tree-directory .ant-tree-child-tree > li.ant-tree-treenode-selected > span.ant-tree-checkbox.ant-tree-checkbox-checked .ant-tree-checkbox-inner::after {
  border-color: #1890ff;
}

.ant-tree.ant-tree-directory > li.ant-tree-treenode-selected > span.ant-tree-node-content-wrapper::before,
.ant-tree.ant-tree-directory .ant-tree-child-tree > li.ant-tree-treenode-selected > span.ant-tree-node-content-wrapper::before {
  background: #1890ff;
}

.ant-tree-checkbox {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 0.875rem;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  font-feature-settings: 'tnum';
  position: relative;
  top: -0.09em;
  display: inline-block;
  line-height: 1;
  white-space: nowrap;
  vertical-align: middle;
  outline: none;
  cursor: pointer;
}

.ant-tree-checkbox-wrapper:hover .ant-tree-checkbox-inner,
.ant-tree-checkbox:hover .ant-tree-checkbox-inner,
.ant-tree-checkbox-input:focus + .ant-tree-checkbox-inner {
  border-color: #1890ff;
}

.ant-tree-checkbox-checked::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0.0625rem solid #1890ff;
  border-radius: 0.125rem;
  visibility: hidden;
  -webkit-animation: antCheckboxEffect 0.36s ease-in-out;
  animation: antCheckboxEffect 0.36s ease-in-out;
  -webkit-animation-fill-mode: backwards;
  animation-fill-mode: backwards;
  content: '';
}

.ant-tree-checkbox:hover::after,
.ant-tree-checkbox-wrapper:hover .ant-tree-checkbox::after {
  visibility: visible;
}

.ant-tree-checkbox-inner {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  width: 1rem;
  height: 1rem;
  background-color: #fff;
  border: 0.0625rem solid #d9d9d9;
  border-radius: 0.125rem;
  border-collapse: separate;
  transition: all 0.3s;
}

.ant-tree-checkbox-inner::after {
  position: absolute;
  top: 50%;
  left: 22%;
  display: table;
  width: 0.357143rem;
  height: 0.571429rem;
  border: 0.125rem solid #fff;
  border-top: 0;
  border-left: 0;
  transform: rotate(45deg) scale(0) translate(-50%, -50%);
  opacity: 0;
  transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6), opacity 0.1s;
  content: ' ';
}

.ant-tree-checkbox-input {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  cursor: pointer;
  opacity: 0;
}

.ant-tree-checkbox-checked .ant-tree-checkbox-inner::after {
  position: absolute;
  display: table;
  border: 0.125rem solid #fff;
  border-top: 0;
  border-left: 0;
  transform: rotate(45deg) scale(1) translate(-50%, -50%);
  opacity: 1;
  transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s;
  content: ' ';
}

.ant-tree-checkbox-checked .ant-tree-checkbox-inner {
  background-color: #1890ff;
  border-color: #1890ff;
}

.ant-tree-checkbox-disabled {
  cursor: not-allowed;
}

.ant-tree-checkbox-disabled.ant-tree-checkbox-checked .ant-tree-checkbox-inner::after {
  border-color: rgba(0, 0, 0, 0.25);
  -webkit-animation-name: none;
  animation-name: none;
}

.ant-tree-checkbox-disabled .ant-tree-checkbox-input {
  cursor: not-allowed;
}

.ant-tree-checkbox-disabled .ant-tree-checkbox-inner {
  background-color: #f5f5f5;
  border-color: #d9d9d9 !important;
}

.ant-tree-checkbox-disabled .ant-tree-checkbox-inner::after {
  border-color: #f5f5f5;
  border-collapse: separate;
  -webkit-animation-name: none;
  animation-name: none;
}

.ant-tree-checkbox-disabled + span {
  color: rgba(0, 0, 0, 0.25);
  cursor: not-allowed;
}

.ant-tree-checkbox-disabled:hover::after,
.ant-tree-checkbox-wrapper:hover .ant-tree-checkbox-disabled::after {
  visibility: hidden;
}

.ant-tree-checkbox-wrapper {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 0.875rem;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  font-feature-settings: 'tnum';
  display: inline-block;
  line-height: unset;
  cursor: pointer;
}

.ant-tree-checkbox-wrapper.ant-tree-checkbox-wrapper-disabled {
  cursor: not-allowed;
}

.ant-tree-checkbox-wrapper + .ant-tree-checkbox-wrapper {
  margin-left: 0.5rem;
}

.ant-tree-checkbox + span {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}

.ant-tree-checkbox-group {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 0.875rem;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  font-feature-settings: 'tnum';
  display: inline-block;
}

.ant-tree-checkbox-group-item {
  display: inline-block;
  margin-right: 0.5rem;
}

.ant-tree-checkbox-group-item:last-child {
  margin-right: 0;
}

.ant-tree-checkbox-group-item + .ant-tree-checkbox-group-item {
  margin-left: 0;
}

.ant-tree-checkbox-indeterminate .ant-tree-checkbox-inner {
  background-color: #fff;
  border-color: #d9d9d9;
}

.ant-tree-checkbox-indeterminate .ant-tree-checkbox-inner::after {
  top: 50%;
  left: 50%;
  width: 0.5rem;
  height: 0.5rem;
  background-color: #1890ff;
  border: 0;
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  content: ' ';
}

.ant-tree-checkbox-indeterminate.ant-tree-checkbox-disabled .ant-tree-checkbox-inner::after {
  background-color: rgba(0, 0, 0, 0.25);
  border-color: rgba(0, 0, 0, 0.25);
}

.ant-tree {
  /* see https://github.com/ant-design/ant-design/issues/16259 */
  box-sizing: border-box;
  color: rgba(0, 0, 0, 0.65);
  font-size: 0.875rem;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  font-feature-settings: 'tnum';
  margin: 0;
  padding: 0;
}

.ant-tree-checkbox-checked::after {
  position: absolute;
  top: 16.67%;
  left: 0;
  width: 100%;
  height: 66.67%;
}

.ant-tree ol,
.ant-tree ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ant-tree li {
  margin: 0;
  padding: 0.25rem 0;
  white-space: nowrap;
  list-style: none;
  outline: 0;
}

.ant-tree li span[draggable],
.ant-tree li span[draggable='true'] {
  line-height: 1.25rem;
  border-top: 0.125rem transparent solid;
  border-bottom: 0.125rem transparent solid;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  /* Required to make elements draggable in old WebKit */
  -khtml-user-drag: element;
  -webkit-user-drag: element;
}

.ant-tree li.drag-over > span[draggable] {
  color: white;
  background-color: #1890ff;
  opacity: 0.8;
}

.ant-tree li.drag-over-gap-top > span[draggable] {
  border-top-color: #1890ff;
}

.ant-tree li.drag-over-gap-bottom > span[draggable] {
  border-bottom-color: #1890ff;
}

.ant-tree li.filter-node > span {
  color: #f5222d !important;
  font-weight: 500 !important;
}

.ant-tree li.ant-tree-treenode-loading span.ant-tree-switcher.ant-tree-switcher_open .ant-tree-switcher-loading-icon,
.ant-tree li.ant-tree-treenode-loading span.ant-tree-switcher.ant-tree-switcher_close .ant-tree-switcher-loading-icon {
  position: absolute;
  left: 0;
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  color: #1890ff;
  font-size: 0.875rem;
  transform: none;
}

.ant-tree li.ant-tree-treenode-loading span.ant-tree-switcher.ant-tree-switcher_open .ant-tree-switcher-loading-icon svg,
.ant-tree li.ant-tree-treenode-loading span.ant-tree-switcher.ant-tree-switcher_close .ant-tree-switcher-loading-icon svg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

:root .ant-tree li.ant-tree-treenode-loading span.ant-tree-switcher.ant-tree-switcher_open::after,
:root .ant-tree li.ant-tree-treenode-loading span.ant-tree-switcher.ant-tree-switcher_close::after {
  opacity: 0;
}

.ant-tree li ul {
  margin: 0;
  padding: 0 0 0 1.125rem;
}

.ant-tree li .ant-tree-node-content-wrapper {
  display: inline-block;
  height: 1.5rem;
  margin: 0;
  padding: 0 0.3125rem;
  color: rgba(0, 0, 0, 0.65);
  line-height: 1.5rem;
  text-decoration: none;
  vertical-align: top;
  border-radius: 0.125rem;
  cursor: pointer;
  transition: all 0.3s;
}

.ant-tree li .ant-tree-node-content-wrapper:hover {
  background-color: #e6f7ff;
}

.ant-tree li .ant-tree-node-content-wrapper.ant-tree-node-selected {
  background-color: #bae7ff;
}

.ant-tree li span.ant-tree-checkbox {
  top: initial;
  height: 1.5rem;
  margin: 0 0.25rem 0 0.125rem;
  padding: 0.25rem 0;
}

.ant-tree li span.ant-tree-switcher,
.ant-tree li span.ant-tree-iconEle {
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  margin: 0;
  line-height: 1.5rem;
  text-align: center;
  vertical-align: top;
  border: 0 none;
  outline: none;
  cursor: pointer;
}

.ant-tree li span.ant-tree-iconEle:empty {
  display: none;
}

.ant-tree li span.ant-tree-switcher {
  position: relative;
}

.ant-tree li span.ant-tree-switcher.ant-tree-switcher-noop {
  cursor: default;
}

.ant-tree li span.ant-tree-switcher.ant-tree-switcher_open .ant-tree-switcher-icon,
.ant-tree li span.ant-tree-switcher.ant-tree-switcher_open .ant-select-switcher-icon {
  font-size: 0.75rem;
  font-size: 0.625rem \9;
  transform: scale(0.83333333) rotate(0deg);
  display: inline-block;
  font-weight: bold;
}

:root .ant-tree li span.ant-tree-switcher.ant-tree-switcher_open .ant-tree-switcher-icon,
:root .ant-tree li span.ant-tree-switcher.ant-tree-switcher_open .ant-select-switcher-icon {
  font-size: 0.75rem;
}

.ant-tree li span.ant-tree-switcher.ant-tree-switcher_open .ant-tree-switcher-icon svg,
.ant-tree li span.ant-tree-switcher.ant-tree-switcher_open .ant-select-switcher-icon svg {
  transition: transform 0.3s;
}

.ant-tree li span.ant-tree-switcher.ant-tree-switcher_close .ant-tree-switcher-icon,
.ant-tree li span.ant-tree-switcher.ant-tree-switcher_close .ant-select-switcher-icon {
  font-size: 0.75rem;
  font-size: 0.625rem \9;
  transform: scale(0.83333333) rotate(0deg);
  display: inline-block;
  font-weight: bold;
}

:root .ant-tree li span.ant-tree-switcher.ant-tree-switcher_close .ant-tree-switcher-icon,
:root .ant-tree li span.ant-tree-switcher.ant-tree-switcher_close .ant-select-switcher-icon {
  font-size: 0.75rem;
}

.ant-tree li span.ant-tree-switcher.ant-tree-switcher_close .ant-tree-switcher-icon svg,
.ant-tree li span.ant-tree-switcher.ant-tree-switcher_close .ant-select-switcher-icon svg {
  transition: transform 0.3s;
}

.ant-tree li span.ant-tree-switcher.ant-tree-switcher_close .ant-tree-switcher-icon svg {
  transform: rotate(-90deg);
}

.ant-tree li:last-child > span.ant-tree-switcher::before,
.ant-tree li:last-child > span.ant-tree-iconEle::before {
  display: none;
}

.ant-tree > li:first-child {
  padding-top: 0.4375rem;
}

.ant-tree > li:last-child {
  padding-bottom: 0.4375rem;
}

.ant-tree-child-tree > li:first-child {
  padding-top: 0.5rem;
}

.ant-tree-child-tree > li:last-child {
  padding-bottom: 0;
}

li.ant-tree-treenode-disabled > span:not(.ant-tree-switcher),
li.ant-tree-treenode-disabled > .ant-tree-node-content-wrapper,
li.ant-tree-treenode-disabled > .ant-tree-node-content-wrapper span {
  color: rgba(0, 0, 0, 0.25);
  cursor: not-allowed;
}

li.ant-tree-treenode-disabled > .ant-tree-node-content-wrapper:hover {
  background: transparent;
}

.ant-tree-icon__open {
  margin-right: 0.125rem;
  vertical-align: top;
}

.ant-tree-icon__close {
  margin-right: 0.125rem;
  vertical-align: top;
}

.ant-tree.ant-tree-show-line li {
  position: relative;
}

.ant-tree.ant-tree-show-line li span.ant-tree-switcher {
  color: rgba(0, 0, 0, 0.45);
  background: #fff;
}

.ant-tree.ant-tree-show-line li span.ant-tree-switcher.ant-tree-switcher-noop .ant-tree-switcher-icon,
.ant-tree.ant-tree-show-line li span.ant-tree-switcher.ant-tree-switcher-noop .ant-select-switcher-icon {
  display: inline-block;
  font-weight: normal;
  font-size: 0.75rem;
}

.ant-tree.ant-tree-show-line li span.ant-tree-switcher.ant-tree-switcher-noop .ant-tree-switcher-icon svg,
.ant-tree.ant-tree-show-line li span.ant-tree-switcher.ant-tree-switcher-noop .ant-select-switcher-icon svg {
  transition: transform 0.3s;
}

.ant-tree.ant-tree-show-line li span.ant-tree-switcher.ant-tree-switcher_open .ant-tree-switcher-icon,
.ant-tree.ant-tree-show-line li span.ant-tree-switcher.ant-tree-switcher_open .ant-select-switcher-icon {
  display: inline-block;
  font-weight: normal;
  font-size: 0.75rem;
}

.ant-tree.ant-tree-show-line li span.ant-tree-switcher.ant-tree-switcher_open .ant-tree-switcher-icon svg,
.ant-tree.ant-tree-show-line li span.ant-tree-switcher.ant-tree-switcher_open .ant-select-switcher-icon svg {
  transition: transform 0.3s;
}

.ant-tree.ant-tree-show-line li span.ant-tree-switcher.ant-tree-switcher_close .ant-tree-switcher-icon,
.ant-tree.ant-tree-show-line li span.ant-tree-switcher.ant-tree-switcher_close .ant-select-switcher-icon {
  display: inline-block;
  font-weight: normal;
  font-size: 0.75rem;
}

.ant-tree.ant-tree-show-line li span.ant-tree-switcher.ant-tree-switcher_close .ant-tree-switcher-icon svg,
.ant-tree.ant-tree-show-line li span.ant-tree-switcher.ant-tree-switcher_close .ant-select-switcher-icon svg {
  transition: transform 0.3s;
}

.ant-tree.ant-tree-show-line li:not(:last-child)::before {
  position: absolute;
  left: 0.75rem;
  width: 0.0625rem;
  height: 100%;
  height: calc(100% - 1.375rem);
  margin: 1.375rem 0 0;
  border-left: 0.0625rem solid #d9d9d9;
  content: ' ';
}

.ant-tree.ant-tree-icon-hide .ant-tree-treenode-loading .ant-tree-iconEle {
  display: none;
}

.ant-tree.ant-tree-block-node li .ant-tree-node-content-wrapper {
  width: calc(100% - 1.5rem);
}

.ant-tree.ant-tree-block-node li span.ant-tree-checkbox + .ant-tree-node-content-wrapper {
  width: calc(100% - 2.875rem);
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */

/* stylelint-disable no-duplicate-selectors */

/* stylelint-disable */

/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */

.ant-drawer {
  position: fixed;
  z-index: 1000;
  width: 0%;
  height: 100%;
  transition: transform 0.3s cubic-bezier(0.7, 0.3, 0.1, 1), height 0s ease 0.3s, width 0s ease 0.3s;
}

.ant-drawer > * {
  transition: transform 0.3s cubic-bezier(0.7, 0.3, 0.1, 1), box-shadow 0.3s cubic-bezier(0.7, 0.3, 0.1, 1);
}

.ant-drawer-content-wrapper {
  position: absolute;
}

.ant-drawer .ant-drawer-content {
  width: 100%;
  height: 100%;
}

.ant-drawer-left,
.ant-drawer-right {
  top: 0;
  width: 0%;
  height: 100%;
}

.ant-drawer-left .ant-drawer-content-wrapper,
.ant-drawer-right .ant-drawer-content-wrapper {
  height: 100%;
}

.ant-drawer-left.ant-drawer-open,
.ant-drawer-right.ant-drawer-open {
  width: 100%;
  transition: transform 0.3s cubic-bezier(0.7, 0.3, 0.1, 1);
}

.ant-drawer-left.ant-drawer-open.no-mask,
.ant-drawer-right.ant-drawer-open.no-mask {
  width: 0%;
}

.ant-drawer-left.ant-drawer-open .ant-drawer-content-wrapper {
  box-shadow: 0.125rem 0 0.5rem rgba(0, 0, 0, 0.15);
}

.ant-drawer-right {
  right: 0;
}

.ant-drawer-right .ant-drawer-content-wrapper {
  right: 0;
}

.ant-drawer-right.ant-drawer-open .ant-drawer-content-wrapper {
  box-shadow: -0.125rem 0 0.5rem rgba(0, 0, 0, 0.15);
}

.ant-drawer-right.ant-drawer-open.no-mask {
  right: 0.0625rem;
  transform: translateX(0.0625rem);
}

.ant-drawer-top,
.ant-drawer-bottom {
  left: 0;
  width: 100%;
  height: 0%;
}

.ant-drawer-top .ant-drawer-content-wrapper,
.ant-drawer-bottom .ant-drawer-content-wrapper {
  width: 100%;
}

.ant-drawer-top.ant-drawer-open,
.ant-drawer-bottom.ant-drawer-open {
  height: 100%;
  transition: transform 0.3s cubic-bezier(0.7, 0.3, 0.1, 1);
}

.ant-drawer-top.ant-drawer-open.no-mask,
.ant-drawer-bottom.ant-drawer-open.no-mask {
  height: 0%;
}

.ant-drawer-top {
  top: 0;
}

.ant-drawer-top.ant-drawer-open .ant-drawer-content-wrapper {
  box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.15);
}

.ant-drawer-bottom {
  bottom: 0;
}

.ant-drawer-bottom .ant-drawer-content-wrapper {
  bottom: 0;
}

.ant-drawer-bottom.ant-drawer-open .ant-drawer-content-wrapper {
  box-shadow: 0 -0.125rem 0.5rem rgba(0, 0, 0, 0.15);
}

.ant-drawer-bottom.ant-drawer-open.no-mask {
  bottom: 0.0625rem;
  transform: translateY(0.0625rem);
}

.ant-drawer.ant-drawer-open .ant-drawer-mask {
  height: 100%;
  opacity: 1;
  transition: none;
  -webkit-animation: antdDrawerFadeIn 0.3s cubic-bezier(0.7, 0.3, 0.1, 1);
  animation: antdDrawerFadeIn 0.3s cubic-bezier(0.7, 0.3, 0.1, 1);
}

.ant-drawer-title {
  margin: 0;
  color: rgba(0, 0, 0, 0.85);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.375rem;
}

.ant-drawer-content {
  position: relative;
  z-index: 1;
  overflow: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 0;
}

.ant-drawer-close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
  display: block;
  width: 3.5rem;
  height: 3.5rem;
  padding: 0;
  color: rgba(0, 0, 0, 0.45);
  font-weight: 700;
  font-size: 1rem;
  font-style: normal;
  line-height: 3.5rem;
  text-align: center;
  text-transform: none;
  text-decoration: none;
  background: transparent;
  border: 0;
  outline: 0;
  cursor: pointer;
  transition: color 0.3s;
  text-rendering: auto;
}

.ant-drawer-close:focus,
.ant-drawer-close:hover {
  color: rgba(0, 0, 0, 0.75);
  text-decoration: none;
}

.ant-drawer-header {
  position: relative;
  padding: 1rem 1.5rem;
  color: rgba(0, 0, 0, 0.65);
  background: #fff;
  border-bottom: 0.0625rem solid #e8e8e8;
  border-radius: 0.25rem 0.25rem 0 0;
}

.ant-drawer-header-no-title {
  color: rgba(0, 0, 0, 0.65);
  background: #fff;
}

.ant-drawer-body {
  padding: 1.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  word-wrap: break-word;
}

.ant-drawer-wrapper-body {
  height: 100%;
  overflow: auto;
}

.ant-drawer-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: rgba(0, 0, 0, 0.45);
  opacity: 0;
  filter: alpha(opacity=45);
  transition: opacity 0.3s linear, height 0s ease 0.3s;
}

.ant-drawer-open-content {
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.15);
}

@-webkit-keyframes antdDrawerFadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes antdDrawerFadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
@font-face {
  font-family: "xiaomi";
  font-weight: normal;
  font-style: normal;
  font-display: auto;
  unicode-range: U+000-5FF;
  src: url("https://reading.oss.iyougu.com/uploads/mp/font/xiaomi.ttf") format("truetype");
}
@font-face {
  font-family: "dinAlternateBold";
  font-weight: normal;
  font-style: normal;
  font-display: auto;
  unicode-range: U+000-5FF;
  src: url("https://reading-oss.oss-cn-shenzhen.aliyuncs.com/uploads/typeface/DINAlternateBold.ttf") format("truetype");
}
p[data-v-642be2ae] {
  margin: 0;
}
.readStateToast[data-v-642be2ae] {
  width: 100%;
  height: 100%;
  background: url("https://reading.oss.iyougu.com/uploads/sjfx_icon/2023_06_05_reading_stage.png") no-repeat center bottom;
  background-size: 30.25rem 24.5625rem;
  position: relative;
}
.readStateToast.bg1[data-v-642be2ae] {
  background: url("https://reading.oss.iyougu.com/uploads/sjfx_icon/2023_06_30_toast_bg.png") no-repeat center bottom;
  background-size: 23.75rem auto;
}
.readStateToast .item[data-v-642be2ae] {
  width: 16.5625rem;
  height: 4.8125rem;
  background: url("https://reading.oss.iyougu.com/uploads/sjfx_icon/2023_06_05_reading_itemBg.png") no-repeat;
  background-size: 100% 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0 0.75rem 0 1.0625rem;
  box-sizing: border-box;
  position: absolute;
  bottom: 7.5rem;
  transform: scale(0.75);
  opacity: 0;
}
.readStateToast .item.item2[data-v-642be2ae] {
  left: 13.75rem;
  bottom: 5.625rem;
  animation: animate2-642be2ae 6s linear;
}
.readStateToast .item.item1[data-v-642be2ae] {
  right: 28.125rem;
  animation: animate1-642be2ae 6s linear;
}
.readStateToast .item.item3[data-v-642be2ae] {
  right: 15.625rem;
  animation: animate3-642be2ae 6s linear;
}
.readStateToast .item.item4[data-v-642be2ae] {
  left: 20rem;
  animation: animate4-642be2ae 6s linear;
}
.readStateToast .item.item5[data-v-642be2ae] {
  right: 13.75rem;
  bottom: 5.625rem;
  animation: animate5-642be2ae 6s linear;
}
.readStateToast .item.toastItem1[data-v-642be2ae] {
  left: 25%;
  bottom: 5.625rem;
  animation: animate1-642be2ae 7s linear;
}
.readStateToast .item.toastItem2[data-v-642be2ae] {
  left: -5%;
  bottom: 5.625rem;
  animation: animate2-642be2ae 7s linear;
}
.readStateToast .item.toastItem3[data-v-642be2ae] {
  right: -10%;
  bottom: 5.625rem;
  animation: animate5-642be2ae 7s linear;
}
.readStateToast .item .user[data-v-642be2ae] {
  font-size: 0.75rem;
  transform: scale(0.9);
  display: flex;
  margin-left: -0.5rem;
}
.readStateToast .item .user .name[data-v-642be2ae] {
  color: #5ee6ff;
  max-width: 8.125rem;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.readStateToast .item .user .tips[data-v-642be2ae] {
  color: #fff;
  margin-left: 0.25rem;
}
.readStateToast .item .info[data-v-642be2ae] {
  font-size: 1.0625rem;
  color: #eafbff;
  max-width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
@keyframes animate1-642be2ae {
0% {
    transform: translate(0) scale(0.5);
    opacity: 0;
}
50% {
    opacity: 1;
    transform: translate(0, -7.5rem) scale(1.1);
}
60% {
    opacity: .5;
}
70% {
    opacity: 0;
}
100% {
    transform: translate(0, -17.5rem) scale(0.5);
    opacity: 0;
}
}
@keyframes animate2-642be2ae {
0% {
    transform: translate(0) scale(0.5);
    opacity: 0;
}
50% {
    opacity: 1;
    transform: translate(-10rem, -9.375rem) scale(1.1);
}
55% {
    opacity: .5;
}
70% {
    opacity: 0;
}
100% {
    transform: translate(-12.5rem, -25rem) scale(0.5);
    opacity: 0;
}
}
@keyframes animate3-642be2ae {
0% {
    transform: translate(0) scale(0.5);
    opacity: 0;
}
50% {
    opacity: 1;
    transform: translate(8.75rem, -12.5rem) scale(1.1);
}
60% {
    opacity: .5;
}
70% {
    opacity: 0;
}
100% {
    transform: translate(12.5rem, -25rem) scale(0.5);
    opacity: 0;
}
}
@keyframes animate4-642be2ae {
0% {
    transform: translate(0) scale(0.5);
    opacity: 0;
}
50% {
    opacity: 1;
    transform: translate(1.875rem, -10rem) scale(1.1);
}
60% {
    opacity: .5;
}
70% {
    opacity: 0;
}
100% {
    transform: translate(0.625rem, -25rem) scale(0.5);
    opacity: 0;
}
}
@keyframes animate5-642be2ae {
0% {
    transform: translate(0) scale(0.5);
    opacity: 0;
}
50% {
    opacity: 1;
    transform: translate(12.5rem, -8.125rem) scale(1.1);
}
60% {
    opacity: .5;
}
70% {
    opacity: 0;
}
100% {
    transform: translate(12.5rem, -25rem) scale(0.5);
    opacity: 0;
}
}
@font-face {
  font-family: "xiaomi";
  font-weight: normal;
  font-style: normal;
  font-display: auto;
  unicode-range: U+000-5FF;
  src: url("https://reading.oss.iyougu.com/uploads/mp/font/xiaomi.ttf") format("truetype");
}
@font-face {
  font-family: "dinAlternateBold";
  font-weight: normal;
  font-style: normal;
  font-display: auto;
  unicode-range: U+000-5FF;
  src: url("https://reading-oss.oss-cn-shenzhen.aliyuncs.com/uploads/typeface/DINAlternateBold.ttf") format("truetype");
}
.empty[data-v-25c32946] {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.empty .empty_icon[data-v-25c32946] {
  width: 16.6875rem;
  height: 16.75rem;
}
.empty .iconImg[data-v-25c32946] {
  width: 14.0625rem;
  height: 13.9375rem;
}
.empty .emptyTxt[data-v-25c32946] {
  color: #d6f2ff;
  font-size: 1.1875rem;
  margin-top: -3.5625rem;
}
.empty .emptyTxt.txt[data-v-25c32946] {
  margin-top: 1.875rem;
  font-size: 1rem;
  color: #fff;
  opacity: .8;
}
.empty .tips[data-v-25c32946] {
  color: #d6f2ff;
  font-size: 0.9375rem;
  opacity: .6;
}
@font-face {
  font-family: "xiaomi";
  font-weight: normal;
  font-style: normal;
  font-display: auto;
  unicode-range: U+000-5FF;
  src: url("https://reading.oss.iyougu.com/uploads/mp/font/xiaomi.ttf") format("truetype");
}
@font-face {
  font-family: "dinAlternateBold";
  font-weight: normal;
  font-style: normal;
  font-display: auto;
  unicode-range: U+000-5FF;
  src: url("https://reading-oss.oss-cn-shenzhen.aliyuncs.com/uploads/typeface/DINAlternateBold.ttf") format("truetype");
}
.titleBox[data-v-7e44e079] {
  display: flex;
  align-items: center;
}
.titleBox .icon[data-v-7e44e079] {
  width: 2.75rem;
  height: 1.875rem;
  background: url("https://reading.oss.iyougu.com/uploads/sjfx_icon/2023_06_29_title_icon.png") no-repeat;
  background-size: 100% 100%;
}
.titleBox .txt[data-v-7e44e079] {
  width: 30rem;
  height: 1.875rem;
  background: linear-gradient(90deg, rgba(57, 152, 255, 0.2) 0%, rgba(94, 194, 255, 0) 100%);
  box-shadow: 0 0.1875rem 0.4375rem 0.0625rem rgba(7,22,77,.5);
  line-height: 1.875rem;
  padding-left: 1rem;
  box-sizing: border-box;
  font-size: 1rem;
  color: #fff;
}
@font-face {
  font-family: "xiaomi";
  font-weight: normal;
  font-style: normal;
  font-display: auto;
  unicode-range: U+000-5FF;
  src: url("https://reading.oss.iyougu.com/uploads/mp/font/xiaomi.ttf") format("truetype");
}
@font-face {
  font-family: "dinAlternateBold";
  font-weight: normal;
  font-style: normal;
  font-display: auto;
  unicode-range: U+000-5FF;
  src: url("https://reading-oss.oss-cn-shenzhen.aliyuncs.com/uploads/typeface/DINAlternateBold.ttf") format("truetype");
}
.dataOverview[data-v-1d164104] {
  color: #fff;
  width: 100%;
  padding: 0 3.75rem;
  box-sizing: border-box;
  display: flex;
  overflow-y: auto;
}
.dataOverview .titleBox[data-v-1d164104] {
  display: flex;
  align-items: center;
}
.dataOverview .titleBox .icon[data-v-1d164104] {
  width: 2.75rem;
  height: 1.9375rem;
  background: url("https://reading.oss.iyougu.com/uploads/sjfx_icon/2023_06_29_title_icon.png") no-repeat;
  background-size: 100% 100%;
}
.dataOverview .titleBox .txt[data-v-1d164104] {
  width: 35rem;
  height: 1.875rem;
  background: linear-gradient(90deg, rgba(57, 152, 255, 0.2) 0%, rgba(94, 194, 255, 0) 100%);
  box-shadow: 0 0.1875rem 0.4375rem 0.0625rem rgba(7,22,77,.5);
  line-height: 1.875rem;
  padding-left: 1rem;
  box-sizing: border-box;
  font-size: 1rem;
}
.dataOverview .module[data-v-1d164104] {
  width: 66%;
}
.dataOverview .module.module1[data-v-1d164104] {
  width: 30%;
}
.dataOverview .module .box[data-v-1d164104] {
  display: flex;
  align-items: center;
}
.dataOverview .module .box .actCount[data-v-1d164104] {
  width: 26.8125rem;
  height: 23.8125rem;
  background: url("https://reading.oss.iyougu.com/uploads/sjfx_icon/2023_06_29_act_total_bg.png") no-repeat;
  background-size: 100% 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 5.3125rem;
  box-sizing: border-box;
  margin: 3.125rem 0 3.4375rem;
}
.dataOverview .module .box .actCount .total[data-v-1d164104] {
  color: #eafbff;
  font-weight: bold;
  font-size: 2.625rem;
  font-family: "dinAlternateBold";
  line-height: 2.625rem;
}
.dataOverview .module .box .actCount .txt[data-v-1d164104] {
  color: #16ebf9;
  font-size: 1.4375rem;
  margin-top: 0.3125rem;
}
.dataOverview .module .box .statisticsList[data-v-1d164104] {
  width: 40.3125rem;
  height: 21.4375rem;
  overflow: hidden;
  border-radius: 0.75rem;
  position: relative;
  margin-left: 0.6875rem;
}
.dataOverview .module .box .statisticsList .wrap[data-v-1d164104] {
  width: 100%;
  height: 100%;
  background: linear-gradient(64deg, rgba(56, 155, 248, 0) 0%, rgba(38, 126, 199, 0.16) 100%);
  border-radius: 0.75rem;
  border: 0.0625rem solid;
  border-image: linear-gradient(270deg, rgba(94, 197, 255, 0.33), rgba(94, 230, 255, 0.8), rgba(255, 255, 255, 0)) 1 1;
  align-self: flex-end;
  margin-bottom: 0.625rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.dataOverview .module .box .statisticsList .wrap .item[data-v-1d164104] {
  width: 16.5625rem;
  height: 6.375rem;
  background: url("https://reading.oss.iyougu.com/uploads/sjfx_icon/2023_06_29_item_bg.png") no-repeat;
  background-size: 100% 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  margin-right: 2.75rem;
}
.dataOverview .module .box .statisticsList .wrap .item[data-v-1d164104]:nth-child(2n) {
  margin-right: 0;
}
.dataOverview .module .box .statisticsList .wrap .item .num[data-v-1d164104] {
  font-family: "dinAlternateBold";
  font-size: 2.25rem;
  color: #eafbff;
  line-height: 2.25rem;
  margin-top: 0.3125rem;
}
.dataOverview .module .box .statisticsList .wrap .item .txt[data-v-1d164104] {
  font-size: 1rem;
  color: #5ee6ff;
}
.dataOverview .module .box .statisticsList .line[data-v-1d164104] {
  width: 35.375rem;
  height: 0.125rem;
  background: linear-gradient(162deg, rgba(94, 230, 255, 0.15) 0%, #5EE6FF 50%, rgba(94, 230, 255, 0.15) 100%);
  opacity: .8;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.dataOverview .module .plotBox[data-v-1d164104] {
  width: 14.125rem;
  height: 14.125rem;
  position: relative;
  margin: 1.6875rem 0 2rem 4.75rem;
  padding: 0.6875rem 0.6875rem;
  box-sizing: border-box;
}
.dataOverview .module .plotBox[data-v-1d164104]::before {
  content: "";
  width: 14.125rem;
  height: 14.125rem;
  border: 0.0625rem solid rgba(44,143,255,.3);
  backdrop-filter: blur(0.559805rem);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
}
.dataOverview .module .plotBox[data-v-1d164104]::after {
  content: "";
  position: absolute;
  left: 0.625rem;
  top: 0.625rem;
  width: 12.875rem;
  height: 12.875rem;
  background: rgba(27,232,250,.1);
  border: 0.0625rem dashed rgba(44,143,255,.39);
  backdrop-filter: blur(0.559805rem);
  border-radius: 50%;
  z-index: 0;
}
.dataOverview .module .plotBox .line[data-v-1d164104] {
  width: 0.125rem;
  height: 0.25rem;
  background: #5ee6ff;
  position: absolute;
}
.dataOverview .module .plotBox .line.line1[data-v-1d164104] {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.dataOverview .module .plotBox .line.line2[data-v-1d164104] {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.dataOverview .module .plotBox .line.line3[data-v-1d164104] {
  top: 50%;
  left: 0;
  transform: rotate(90deg) translate(-50%, -50%);
}
.dataOverview .module .plotBox .line.line4[data-v-1d164104] {
  top: 50%;
  right: 0;
  transform: rotate(-90deg) translate(-50%, -50%);
}
.dataOverview .module .plotBox .mask[data-v-1d164104] {
  width: 5.75rem;
  height: 5.75rem;
  background: #050f41;
  opacity: .36;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.dataOverview .module .plotBox .chatBox[data-v-1d164104] {
  width: 12.75rem;
  height: 12.75rem;
  position: relative;
  z-index: 1;
}
.dataOverview .module .plotBox .legendList[data-v-1d164104] {
  position: absolute;
  top: 50%;
  right: -16.0625rem;
  transform: translateY(-50%);
}
.dataOverview .module .plotBox .legendList .item[data-v-1d164104] {
  display: flex;
  align-items: center;
  margin-bottom: 1.625rem;
}
.dataOverview .module .plotBox .legendList .item[data-v-1d164104]:last-child {
  margin-bottom: 0;
}
.dataOverview .module .plotBox .legendList .item .colorBox[data-v-1d164104] {
  width: 1.5rem;
  height: 1.5rem;
  background: #28ffca;
  border-radius: 0.1875rem;
  margin-right: 0.5rem;
}
.dataOverview .module .plotBox .legendList .item .colorBox.colorBox1[data-v-1d164104] {
  background: #fed84d;
}
.dataOverview .module .plotBox .legendList .item .colorBox.colorBox2[data-v-1d164104] {
  background: #26cbfe;
}
.dataOverview .module .plotBox .legendList .item .name[data-v-1d164104] {
  color: #fff;
  font-size: 1.125rem;
  margin-right: 2.5rem;
}
.dataOverview .module .plotBox .legendList .item .value[data-v-1d164104] {
  font-size: 1.8125rem;
  font-weight: bold;
  color: #28ffca;
}
.dataOverview .module .plotBox .legendList .item .value.value1[data-v-1d164104] {
  color: #fed84d;
}
.dataOverview .module .plotBox .legendList .item .value.value2[data-v-1d164104] {
  color: #26cbfe;
}
.dataOverview .module .dataList[data-v-1d164104] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 91%;
  margin-top: 2.3125rem;
}
.dataOverview .module .dataList .item[data-v-1d164104] {
  min-width: 29%;
  display: flex;
  align-items: center;
  margin-bottom: 2.25rem;
}
.dataOverview .module .dataList .item .left[data-v-1d164104] {
  width: 4.3125rem;
  height: 4.3125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("https://reading.oss.iyougu.com/uploads/sjfx_icon/2023_06_29_item_bg2.png") no-repeat;
  background-size: 100% 100%;
}
.dataOverview .module .dataList .item .left .icon[data-v-1d164104] {
  width: 1.875rem;
  height: 1.875rem;
}
.dataOverview .module .dataList .item .right[data-v-1d164104] {
  flex: auto;
  display: flex;
  align-items: flex-end;
  align-self: flex-end;
  justify-content: space-between;
  margin-bottom: 0.8125rem;
  position: relative;
}
.dataOverview .module .dataList .item .right[data-v-1d164104]::after {
  content: "";
  width: 15.125rem;
  height: 1.4375rem;
  background: url("https://reading.oss.iyougu.com/uploads/sjfx_icon/2023_06_29_line_bg.png") no-repeat;
  background-size: 100% 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}
.dataOverview .module .dataList .item .right .text[data-v-1d164104] {
  margin-left: 1.5625rem;
  font-size: 1rem;
  color: #eafbff;
  margin-bottom: 0.25rem;
}
.dataOverview .module .dataList .item .right .count[data-v-1d164104] {
  color: rgba(234,251,255,.6);
  font-size: 0.875rem;
  margin-bottom: 0.1875rem;
  display: flex;
  align-items: flex-end;
}
.dataOverview .module .dataList .item .right .count .num[data-v-1d164104] {
  font-size: 1.875rem;
  color: #16f4f9;
  font-weight: bold;
  font-family: "dinAlternateBold";
  line-height: 1.875rem;
}
.dataOverview .module .dataList .item .right .count .lab[data-v-1d164104] {
  font-size: 0.875rem;
  transform: scale(0.9);
  margin-left: 0.1875rem;
}
.dataOverview .module .rankBox[data-v-1d164104] {
  width: 37.625rem;
  height: 14.6875rem;
  background: rgba(50,85,211,.1);
  box-shadow: inset 0 0 0.8125rem 0.125rem rgba(4,8,43,.5);
  border: 0.0625rem solid;
  border-image: linear-gradient(270deg, rgba(255, 255, 255, 0), rgba(94, 230, 255, 0.2), rgba(255, 255, 255, 0)) 1 1;
  backdrop-filter: blur(0.25rem);
  margin: 0.625rem 0 1.9375rem;
  position: relative;
  padding: 1.25rem;
  box-sizing: border-box;
}
.dataOverview .module .rankBox[data-v-1d164104]::before,
.dataOverview .module .rankBox[data-v-1d164104]::after {
  content: "";
  width: 0.0625rem;
  height: 80%;
  background: linear-gradient(162deg, rgba(94, 230, 255, 0.15) 0%, #5EE6FF 50%, rgba(94, 230, 255, 0.15) 100%);
  opacity: .2;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.dataOverview .module .rankBox[data-v-1d164104]::before {
  left: 0;
}
.dataOverview .module .rankBox[data-v-1d164104]::after {
  right: 0;
}
.dataOverview .module .rankBox .arrow[data-v-1d164104] {
  display: block;
  width: 0.625rem;
  height: 0.6875rem;
  background: url("https://reading.oss.iyougu.com/uploads/sjfx_icon/2023_06_29_arrow.png") no-repeat;
  background-size: 100% 100%;
  position: absolute;
}
.dataOverview .module .rankBox .arrow.arrow1[data-v-1d164104] {
  top: 0;
  left: 0;
}
.dataOverview .module .rankBox .arrow.arrow2[data-v-1d164104] {
  top: 0;
  right: 0;
  transform: rotate(90deg);
}
.dataOverview .module .rankBox .arrow.arrow3[data-v-1d164104] {
  bottom: 0;
  left: 0;
  transform: rotate(-90deg);
}
.dataOverview .module .rankBox .arrow.arrow4[data-v-1d164104] {
  bottom: 0;
  right: 0;
  transform: rotate(180deg);
}
.dataOverview .module .rankBox .rankItem[data-v-1d164104] {
  width: 100%;
  height: 2.5rem;
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  color: #eafbff;
  background: rgba(94,230,255,.1);
  backdrop-filter: blur(0.25rem);
  padding: 0 1.25rem 0 0.625rem;
  box-sizing: border-box;
}
.dataOverview .module .rankBox .rankItem[data-v-1d164104]:nth-child(2n) {
  background: rgba(94,230,255,0);
}
.dataOverview .module .rankBox .rankItem .rank[data-v-1d164104] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.875rem;
  margin-right: 1.25rem;
}
.dataOverview .module .rankBox .rankItem .rank .icon[data-v-1d164104] {
  width: 1.875rem;
  height: 1.75rem;
}
.dataOverview .module .rankBox .rankItem .info[data-v-1d164104] {
  width: calc(100% - 3.125rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dataOverview .module .rankBox .rankItem .info .name[data-v-1d164104] {
  max-width: 64%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.dataOverview .module .rankBox .rankItem .info .countBox[data-v-1d164104] {
  min-width: 24%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dataOverview .module .rankBox .rankItem .info .countBox .total[data-v-1d164104] {
  color: #5ee6ff;
  font-size: 1.125rem;
}
.dataOverview .module .rankBox .rankItem .info .countBox .total .lab[data-v-1d164104] {
  color: #eafbff;
  font-size: 0.75rem;
  opacity: .5;
  display: inline-block;
  margin-left: 0.125rem;
}
.dataOverview .module .empty[data-v-1d164104] {
  transform: scale(0.7);
}
.dataOverview .module .toastBox[data-v-1d164104] {
  width: 100%;
  height: 15rem;
  transform: scale(0.7);
  margin: 1.875rem 0 0 3.125rem;
}
@font-face {
  font-family: "xiaomi";
  font-weight: normal;
  font-style: normal;
  font-display: auto;
  unicode-range: U+000-5FF;
  src: url("https://reading.oss.iyougu.com/uploads/mp/font/xiaomi.ttf") format("truetype");
}
@font-face {
  font-family: "dinAlternateBold";
  font-weight: normal;
  font-style: normal;
  font-display: auto;
  unicode-range: U+000-5FF;
  src: url("https://reading-oss.oss-cn-shenzhen.aliyuncs.com/uploads/typeface/DINAlternateBold.ttf") format("truetype");
}
.rankMain[data-v-7e3503c3] {
  margin-top: 1.3125rem;
  width: 33.75rem;
  height: 22.75rem;
  position: relative;
}
.rankMain .rankBox[data-v-7e3503c3] {
  width: 100%;
  height: 100%;
  background: rgba(50,85,211,.1);
  box-shadow: inset 0 0 0.8125rem 0.125rem rgba(4,8,43,.5);
  border: 0.0625rem solid;
  border-image: linear-gradient(270deg, rgba(255, 255, 255, 0), rgba(94, 230, 255, 0.2), rgba(255, 255, 255, 0)) 1 1;
  backdrop-filter: blur(0.25rem);
  position: relative;
  padding: 1.25rem;
  box-sizing: border-box;
}
.rankMain .rankBox[data-v-7e3503c3]::before,
.rankMain .rankBox[data-v-7e3503c3]::after {
  content: "";
  width: 0.0625rem;
  height: 80%;
  background: linear-gradient(162deg, rgba(94, 230, 255, 0.15) 0%, #5EE6FF 50%, rgba(94, 230, 255, 0.15) 100%);
  opacity: .2;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.rankMain .rankBox[data-v-7e3503c3]::before {
  left: 0;
}
.rankMain .rankBox[data-v-7e3503c3]::after {
  right: 0;
}
.rankMain .rankBox.active[data-v-7e3503c3] {
  padding: 0 1.25rem 1.25rem 1.25rem;
}
.rankMain .rankBox .tabBox[data-v-7e3503c3] {
  width: 100%;
  height: 3.75rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.rankMain .rankBox .tabBox .item[data-v-7e3503c3] {
  width: 6.25rem;
  height: 1.875rem;
  font-size: 1rem;
  color: #fff;
  line-height: 1.375rem;
  margin-left: 0.75rem;
  background: url("http://reading.oss.iyougu.com/uploads/jc_icon/2023_7_1_activtiyCheckIcon2.png") no-repeat;
  background-size: 100% 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.rankMain .rankBox .tabBox .item.active[data-v-7e3503c3] {
  color: #5ee6ff;
  background-image: url("http://reading.oss.iyougu.com/uploads/jc_icon/2023_7_1_activtiyCheckIcon.png");
}
.rankMain .rankBox .arrow[data-v-7e3503c3] {
  display: block;
  width: 0.625rem;
  height: 0.6875rem;
  background: url("https://reading.oss.iyougu.com/uploads/sjfx_icon/2023_06_29_arrow.png") no-repeat;
  background-size: 100% 100%;
  position: absolute;
}
.rankMain .rankBox .arrow.arrow1[data-v-7e3503c3] {
  top: 0;
  left: 0;
}
.rankMain .rankBox .arrow.arrow2[data-v-7e3503c3] {
  top: 0;
  right: 0;
  transform: rotate(90deg);
}
.rankMain .rankBox .arrow.arrow3[data-v-7e3503c3] {
  bottom: 0;
  left: 0;
  transform: rotate(-90deg);
}
.rankMain .rankBox .arrow.arrow4[data-v-7e3503c3] {
  bottom: 0;
  right: 0;
  transform: rotate(180deg);
}
.rankMain .rankBox .rankItem[data-v-7e3503c3] {
  width: 100%;
  height: 3.75rem;
  display: flex;
  align-items: center;
  font-size: 1rem;
  color: #eafbff;
  background: rgba(94,230,255,.1);
  backdrop-filter: blur(0.25rem);
  padding: 0 1.25rem 0 0.625rem;
  box-sizing: border-box;
}
.rankMain .rankBox .rankItem[data-v-7e3503c3]:nth-child(2n) {
  background: rgba(94,230,255,0);
}
.rankMain .rankBox .rankItem .rank[data-v-7e3503c3] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.125rem;
  margin-right: 1.25rem;
}
.rankMain .rankBox .rankItem .rank .icon[data-v-7e3503c3] {
  width: 2.125rem;
  height: 2.125rem;
}
.rankMain .rankBox .rankItem .info[data-v-7e3503c3] {
  width: calc(100% - 3.125rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.rankMain .rankBox .rankItem .info .nameBox[data-v-7e3503c3] {
  max-width: 55%;
}
.rankMain .rankBox .rankItem .info .nameBox .name[data-v-7e3503c3] {
  width: 100%;
  font-size: 0.875rem;
  color: #eafbff;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.rankMain .rankBox .rankItem .info .nameBox .orga[data-v-7e3503c3] {
  width: 100%;
  font-size: 0.75rem;
  color: #eafbff;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  opacity: .6;
}
.rankMain .rankBox .rankItem .info .countBox[data-v-7e3503c3] {
  min-width: 35%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.rankMain .rankBox .rankItem .info .countBox .total[data-v-7e3503c3] {
  color: #5ee6ff;
  font-size: 1.125rem;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
.rankMain .rankBox .rankItem .info .countBox .total .lab[data-v-7e3503c3] {
  color: #eafbff;
  font-size: 0.75rem;
  opacity: .5;
  margin-left: 0.375rem;
  margin: 0.125rem;
}
.rankMain .emptyBox[data-v-7e3503c3] {
  width: 12.5rem;
  height: 12.5rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url("http://reading.oss.iyougu.com/uploads/jc_icon/2023_7_3_activtiyEmpty.png") no-repeat;
  background-size: 100% 100%;
}
.rankMain .emptyBox .text[data-v-7e3503c3] {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.875rem;
  color: #d6f2ff;
  line-height: 1.25rem;
}
@font-face {
  font-family: "xiaomi";
  font-weight: normal;
  font-style: normal;
  font-display: auto;
  unicode-range: U+000-5FF;
  src: url("https://reading.oss.iyougu.com/uploads/mp/font/xiaomi.ttf") format("truetype");
}
@font-face {
  font-family: "dinAlternateBold";
  font-weight: normal;
  font-style: normal;
  font-display: auto;
  unicode-range: U+000-5FF;
  src: url("https://reading-oss.oss-cn-shenzhen.aliyuncs.com/uploads/typeface/DINAlternateBold.ttf") format("truetype");
}
.page .activityStatistics[data-v-c7c82bdc] {
  width: 100vw;
  max-height: 100vh;
  display: flex;
  justify-content: space-between;
  padding: 0 3.75rem;
  box-sizing: border-box;
}
.page .activityStatistics .leftBox .actitityRanking[data-v-c7c82bdc] {
  margin-top: 1.9375rem;
}
.page .activityStatistics .conterBox[data-v-c7c82bdc] {
  margin-top: 1.25rem;
  width: 42rem;
  height: 52.125rem;
  background: url("http://reading.oss.iyougu.com/uploads/jc_icon/2023_7_1_activityContBg.png") no-repeat;
  background-size: 100% 100%;
  display: flex;
  flex-direction: column;
}
.page .activityStatistics .conterBox .title[data-v-c7c82bdc] {
  margin-top: 3.125rem;
  font-size: 1.75rem;
  color: #fff;
  line-height: 2.375rem;
  text-align: center;
}
.page .activityStatistics .conterBox .dataTop[data-v-c7c82bdc] {
  margin-top: 3rem;
  display: flex;
  justify-content: space-between;
  padding: 0 1.25rem;
  box-sizing: border-box;
}
.page .activityStatistics .conterBox .dataTop .item[data-v-c7c82bdc] {
  width: 12.0625rem;
  height: 13.375rem;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: relative;
}
.page .activityStatistics .conterBox .dataTop .item.active0[data-v-c7c82bdc] {
  margin-top: 2.25rem;
  background-image: url("http://reading.oss.iyougu.com/uploads/jc_icon/2023_7_1_activityContBg3.png");
}
.page .activityStatistics .conterBox .dataTop .item.active0 .text[data-v-c7c82bdc] {
  color: #16f1ae;
}
.page .activityStatistics .conterBox .dataTop .item.active1[data-v-c7c82bdc] {
  background-image: url("http://reading.oss.iyougu.com/uploads/jc_icon/2023_7_1_activityContBg4.png");
}
.page .activityStatistics .conterBox .dataTop .item.active1 .text[data-v-c7c82bdc] {
  color: #5ee6ff;
}
.page .activityStatistics .conterBox .dataTop .item.active2[data-v-c7c82bdc] {
  margin-top: 2.25rem;
  background-image: url("http://reading.oss.iyougu.com/uploads/jc_icon/2023_7_1_activityContBg5.png");
}
.page .activityStatistics .conterBox .dataTop .item.active2 .text[data-v-c7c82bdc] {
  color: #ffbd3b;
}
.page .activityStatistics .conterBox .dataTop .item .nub[data-v-c7c82bdc] {
  position: absolute;
  top: 2.6875rem;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 1.125rem;
  font-weight: bold;
  color: #fff;
  line-height: 1.1875rem;
  text-shadow: 0 0.0625rem 0.125rem rgba(22,204,162,.5);
}
.page .activityStatistics .conterBox .dataTop .item .text[data-v-c7c82bdc] {
  position: absolute;
  top: 9.375rem;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 0.75rem;
  color: #16f1ae;
  line-height: 1rem;
  text-shadow: 0 0.0625rem 0.125rem #5effe9;
}
.page .activityStatistics .conterBox .materialBox[data-v-c7c82bdc] {
  flex: 1;
  background: url("http://reading.oss.iyougu.com/uploads/jc_icon/2023_7_1_activityContBg2.png") no-repeat;
  background-size: 100% auto;
  padding: 5rem 1.875rem 1.875rem 1.875rem;
  box-sizing: border-box;
}
.page .activityStatistics .conterBox .materialBox #container[data-v-c7c82bdc] {
  width: 100%;
  height: 100%;
}
.page .activityStatistics .rightBox .opusBox .radartBox[data-v-c7c82bdc] {
  margin-top: 1.25rem;
  width: 33.75rem;
  height: 22.75rem;
  background: rgba(50,85,211,.1);
  box-shadow: inset 0 0 0.8125rem 0.125rem rgba(4,8,43,.5);
  border-image: linear-gradient(270deg, rgba(255, 255, 255, 0), rgba(94, 230, 255, 0.2), rgba(255, 255, 255, 0)) 1 1;
  backdrop-filter: blur(0.25rem);
  position: relative;
}
.page .activityStatistics .rightBox .opusBox .radartBox #container2[data-v-c7c82bdc] {
  width: 100%;
  height: 100%;
  background: url("http://reading.oss.iyougu.com/uploads/jc_icon/2023_7_3_activityRadartBg.png") no-repeat;
  background-size: 100% 100%;
}
.page .activityStatistics .rightBox .opusBox .radartBox .arrow[data-v-c7c82bdc] {
  display: block;
  width: 0.625rem;
  height: 0.6875rem;
  background: url("https://reading.oss.iyougu.com/uploads/sjfx_icon/2023_06_29_arrow.png") no-repeat;
  background-size: 100% 100%;
  position: absolute;
}
.page .activityStatistics .rightBox .opusBox .radartBox .arrow.arrow1[data-v-c7c82bdc] {
  top: 0;
  left: 0;
}
.page .activityStatistics .rightBox .opusBox .radartBox .arrow.arrow2[data-v-c7c82bdc] {
  top: 0;
  right: 0;
  transform: rotate(90deg);
}
.page .activityStatistics .rightBox .opusBox .radartBox .arrow.arrow3[data-v-c7c82bdc] {
  bottom: 0;
  left: 0;
  transform: rotate(-90deg);
}
.page .activityStatistics .rightBox .opusBox .radartBox .arrow.arrow4[data-v-c7c82bdc] {
  bottom: 0;
  right: 0;
  transform: rotate(180deg);
}
.page .activityStatistics .rightBox .actitityRanking[data-v-c7c82bdc] {
  margin-top: 1.9375rem;
}
@font-face {
  font-family: "xiaomi";
  font-weight: normal;
  font-style: normal;
  font-display: auto;
  unicode-range: U+000-5FF;
  src: url("https://reading.oss.iyougu.com/uploads/mp/font/xiaomi.ttf") format("truetype");
}
@font-face {
  font-family: "dinAlternateBold";
  font-weight: normal;
  font-style: normal;
  font-display: auto;
  unicode-range: U+000-5FF;
  src: url("https://reading-oss.oss-cn-shenzhen.aliyuncs.com/uploads/typeface/DINAlternateBold.ttf") format("truetype");
}
[data-v-44feaad6]::-webkit-scrollbar {
  width: 0.5625rem;
  height: 100%;
}
[data-v-44feaad6]::-webkit-scrollbar-thumb {
  width: 0.5625rem;
  background: rgba(94,230,255,.3);
  border-radius: 0.3125rem;
  backdrop-filter: blur(0);
}
.activityDataBoard[data-v-44feaad6] {
  width: 100%;
  height: 100vh;
  background: url("https://reading.oss.iyougu.com/uploads/sjfx_icon/2023_06_28_container_bg.png") no-repeat;
  background-size: 100% 100%;
  min-width: 100rem;
}
.activityDataBoard .content[data-v-44feaad6] {
  width: 100%;
  height: 100%;
  overflow-y: auto;
}
.activityDataBoard .content[data-v-44feaad6]::-webkit-scrollbar {
  display: none;
}
.activityDataBoard .content .topBox[data-v-44feaad6] {
  width: 100%;
  height: 9.8125rem;
  background: url("https://reading.oss.iyougu.com/uploads/sjfx_icon/2023_06_28_bar_bg.png") no-repeat;
  background-size: auto 100%;
  position: relative;
  display: flex;
  justify-content: flex-end;
}
.activityDataBoard .content .topBox .tabs[data-v-44feaad6] {
  margin-right: 9.75rem;
  display: flex;
}
.activityDataBoard .content .topBox .tabs .tabItem[data-v-44feaad6] {
  width: 10.3125rem;
  height: 4.4375rem;
  line-height: 4.4375rem;
  text-align: center;
  color: #fff;
  font-size: 1.25rem;
  cursor: pointer;
}
.activityDataBoard .content .topBox .tabs .tabItem.active[data-v-44feaad6] {
  background: url("https://reading.oss.iyougu.com/uploads/sjfx_icon/2023_06_28_tab_active.png") no-repeat;
  background-size: 100% 100%;
  color: #5ee6ff;
}
.activityDataBoard .content .topBox .checkTab[data-v-44feaad6] {
  width: 12.5rem;
  height: 3.5625rem;
  color: #5ee6ff;
  text-align: center;
  margin: 0.25rem 2.5rem 0 0;
  font-size: 1rem;
  background: url("https://reading.oss.iyougu.com/uploads/sjfx_icon/2023_06_28_orgaCheck_bg.png") no-repeat;
  background-size: 100% 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.activityDataBoard .content .topBox .checkTab .icon[data-v-44feaad6] {
  width: 1.3125rem;
  height: 1.3125rem;
  margin: -0.3125rem 0.3125rem 0 0;
}
.activityDataBoard .content .topBox .checkTab .txt[data-v-44feaad6] {
  margin-top: -0.375rem;
}
.activityDataBoard .content .topBox .titleWrap[data-v-44feaad6] {
  width: 75rem;
  height: 4.6875rem;
  position: absolute;
  bottom: -1.4375rem;
  left: 50%;
  transform: translateX(-50%);
  background: url("https://reading.oss.iyougu.com/uploads/sjfx_icon/2023_06_28_title_bg_img.png") no-repeat center center;
  background-size: 100% 100%;
  font-size: 2rem;
  color: #fff;
  text-align: center;
  font-weight: bold;
}
.activityDataBoard .content .topBox .titleWrap .txt[data-v-44feaad6] {
  margin-top: -1.25rem;
  display: block;
  letter-spacing: 0.125rem;
}
.activityDataBoard .content .actModule .checkAct[data-v-44feaad6] {
  width: 3.125rem;
  height: 10.0625rem;
  word-break: break-all;
  line-height: 1.875rem;
  text-align: center;
  background: url("https://reading.oss.iyougu.com/uploads/sjfx_icon/2023_06_28_actChange_tab.png") no-repeat;
  background-size: 100% 100%;
  writing-mode: vertical-lr;
  padding: 0.5rem 1.125rem 0 0.875rem;
  box-sizing: border-box;
  font-size: 1.25rem;
  color: #eafbff;
  letter-spacing: 0.3125rem;
  position: fixed;
  top: 25.75rem;
  right: 0;
  z-index: 99;
}
.activityDataBoard .content .actModule .listBox[data-v-44feaad6] {
  width: 24.5625rem;
  height: 32.1875rem;
  position: fixed;
  top: 13.4375rem;
  right: -24.5625rem;
  background: url("http://reading.oss.iyougu.com/uploads/sjfx_icon/2023_06_29_actBox_bg.png") no-repeat;
  background-size: 100% 100%;
  padding: 2rem 0 2rem 2.625rem;
  z-index: 99;
}
.activityDataBoard .content .actModule .listBox.show[data-v-44feaad6] {
  right: 0;
  transition: right .2s linear;
}
.activityDataBoard .content .actModule .listBox.hide[data-v-44feaad6] {
  right: -24.5625rem;
  transition: right .2s linear;
}
.activityDataBoard .content .actModule .listBox .close[data-v-44feaad6] {
  word-break: break-all;
  writing-mode: vertical-lr;
  position: absolute;
  top: 51%;
  left: 0;
  color: #5ee6ff;
  font-size: 1.25rem;
  letter-spacing: 0.3125rem;
  transform: translateY(-50%);
}
.activityDataBoard .content .actModule .listBox .list[data-v-44feaad6] {
  width: 22rem;
  height: 100%;
  overflow-y: auto;
}
.activityDataBoard .content .actModule .listBox .list .listItem[data-v-44feaad6] {
  color: #eafbff;
  font-size: 1rem;
  height: 1.875rem;
  line-height: 1.875rem;
  padding: 0 2rem;
  box-sizing: border-box;
  margin-bottom: 0.625rem;
  width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.activityDataBoard .content .actModule .listBox .list .listItem.actChoose[data-v-44feaad6] {
  color: #5ee6ff;
  background: linear-gradient(270deg, rgba(129, 232, 255, 0) 0%, rgba(94, 230, 255, 0.3) 100%);
  border: 0.0625rem solid;
  border-image: linear-gradient(270deg, rgba(50, 198, 255, 0), rgba(222, 248, 255, 0.3), rgba(58, 255, 245, 0)) 1 1;
}
.activityDataBoard .content .actModule .mask[data-v-44feaad6] {
  width: 100%;
  height: 3.25rem;
  background: rgba(12,32,85,.8);
  position: absolute;
  bottom: 0;
  left: 2.625rem;
  filter: blur(0.625rem);
  z-index: 2;
}
.activityDataBoard .content .orgaModule[data-v-44feaad6] {
  width: 23.625rem;
  height: 100%;
  position: fixed;
  right: -23.625rem;
  top: 0;
  background: linear-gradient(270deg, rgba(7, 25, 49, 0.6) 0%, rgba(9, 41, 81, 0.2) 100%);
  backdrop-filter: blur(1rem);
  z-index: 6;
}
.activityDataBoard .content .orgaModule.show[data-v-44feaad6] {
  right: 0;
  transition: right .2s linear;
}
.activityDataBoard .content .orgaModule.hide[data-v-44feaad6] {
  right: -23.625rem;
  transition: right .2s linear;
}
.activityDataBoard .content .orgaModule[data-v-44feaad6]::before {
  content: "";
  width: 0.125rem;
  height: 90%;
  background: linear-gradient(180deg, rgba(94, 171, 255, 0) 0%, rgba(94, 200, 255, 0.5) 50%, rgba(94, 230, 255, 0) 100%);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.activityDataBoard .content .orgTree .orgWrap[data-v-44feaad6] {
  color: "#fff";
}
@font-face {
  font-family: "xiaomi";
  font-weight: normal;
  font-style: normal;
  font-display: auto;
  unicode-range: U+000-5FF;
  src: url("https://reading.oss.iyougu.com/uploads/mp/font/xiaomi.ttf") format("truetype");
}
@font-face {
  font-family: "dinAlternateBold";
  font-weight: normal;
  font-style: normal;
  font-display: auto;
  unicode-range: U+000-5FF;
  src: url("https://reading-oss.oss-cn-shenzhen.aliyuncs.com/uploads/typeface/DINAlternateBold.ttf") format("truetype");
}
.orgTree .ant-drawer-content {
  height: 100%;
  background: linear-gradient(270deg, rgba(7, 25, 49, 0.6) 0%, rgba(9, 41, 81, 0.2) 100%);
  backdrop-filter: blur(1rem);
  -webkit-backdrop-filter: blur(1rem);
  position: relative;
}
.orgTree .ant-drawer-content::before {
  content: "";
  width: 0.125rem;
  height: 90%;
  background: linear-gradient(180deg, rgba(94, 171, 255, 0) 0%, rgba(94, 200, 255, 0.5) 50%, rgba(94, 230, 255, 0) 100%);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.orgTree .ant-drawer-content .ant-drawer-body {
  padding: 0.875rem 0.875rem 3.375rem;
}
.orgTree .ant-tree {
  background: rgba(0,0,0,0);
  color: rgba(234,251,255,.8);
  font-size: 0.75rem;
  font-weight: bold;
  line-height: 1.875rem;
}
.orgTree .ant-tree .ant-tree-treenode {
  padding: 0;
  width: 100%;
}
.orgTree .ant-tree .ant-tree-title {
  color: #eafbff;
}
.orgTree .ant-tree .ant-tree-node-content-wrapper {
  width: calc(100% - 1.25rem);
  height: auto;
}
.orgTree .ant-tree .ant-tree-node-content-wrapper:hover,
.orgTree .ant-tree .ant-tree-node-content-wrapper.ant-tree-node-selected {
  color: #5ee6ff;
  background: linear-gradient(270deg, rgba(129, 232, 255, 0) 0%, rgba(94, 230, 255, 0.3) 100%);
  border: 0.0625rem solid;
  border-image: linear-gradient(270deg, rgba(50, 198, 255, 0), rgb(222, 248, 255), rgba(58, 255, 245, 0)) 1 1;
}
.orgTree .ant-tree .ant-tree-node-content-wrapper:hover .ant-tree-title,
.orgTree .ant-tree .ant-tree-node-content-wrapper.ant-tree-node-selected .ant-tree-title {
  color: #5ee6ff;
}
.orgTree .ant-tree .iconGengduo {
  font-weight: normal;
  display: inline-block;
  transition: transform .3s;
  color: #eafbff;
  width: 1.25rem;
  height: 1.25rem;
}
.orgTree .ant-tree .ant-tree-switcher_close .iconGengduo {
  transform: rotate(-90deg) !important;
}
.orgTree .ant-tree .pNode {
  color: #eafbff;
}
@font-face {
  font-family: "xiaomi";
  font-weight: normal;
  font-style: normal;
  font-display: auto;
  unicode-range: U+000-5FF;
  src: url("https://reading.oss.iyougu.com/uploads/mp/font/xiaomi.ttf") format("truetype");
}
@font-face {
  font-family: "dinAlternateBold";
  font-weight: normal;
  font-style: normal;
  font-display: auto;
  unicode-range: U+000-5FF;
  src: url("https://reading-oss.oss-cn-shenzhen.aliyuncs.com/uploads/typeface/DINAlternateBold.ttf") format("truetype");
}
.moduleTitle[data-v-55ea6811] {
  width: 12.5rem;
  height: 1.875rem;
  background: linear-gradient(90deg, rgba(28, 184, 153, 0.4) 0%, rgba(122, 213, 195, 0) 100%);
  position: relative;
  display: flex;
  align-items: center;
}
.moduleTitle[data-v-55ea6811]::before {
  content: "";
  width: 0.125rem;
  height: 1.875rem;
  background: #0fc;
  position: absolute;
  top: 0;
  left: 0;
}
.moduleTitle .icon[data-v-55ea6811] {
  width: 0.875rem;
  height: 0.875rem;
  margin: 0 0.4375rem 0 0.875rem;
}
.moduleTitle .title[data-v-55ea6811] {
  color: #eefffc;
  font-size: 1rem;
  line-height: 1.875rem;
  font-weight: 600;
}
@font-face {
  font-family: "xiaomi";
  font-weight: normal;
  font-style: normal;
  font-display: auto;
  unicode-range: U+000-5FF;
  src: url("https://reading.oss.iyougu.com/uploads/mp/font/xiaomi.ttf") format("truetype");
}
@font-face {
  font-family: "dinAlternateBold";
  font-weight: normal;
  font-style: normal;
  font-display: auto;
  unicode-range: U+000-5FF;
  src: url("https://reading-oss.oss-cn-shenzhen.aliyuncs.com/uploads/typeface/DINAlternateBold.ttf") format("truetype");
}
p[data-v-60375e9b] {
  margin: 0;
}
.toastTips[data-v-60375e9b] {
  width: 100%;
  height: 100%;
  background: url("https://reading.oss.iyougu.com/uploads/sjfx_icon/2023_09_21_toastStage.png") no-repeat center bottom;
  background-size: 30.625rem 21.9375rem;
  position: relative;
  margin-bottom: 2.1875rem;
}
.toastTips .item[data-v-60375e9b] {
  width: 16.3125rem;
  height: 4.5rem;
  background: url("https://reading.oss.iyougu.com/uploads/sjfx_icon/2023_09_21_toast_bg.png") no-repeat;
  background-size: 100% 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0 0.75rem 0 1.0625rem;
  box-sizing: border-box;
  position: absolute;
  bottom: 6.875rem;
  transform: scale(0.7);
  opacity: 0;
}
.toastTips .item.item1[data-v-60375e9b] {
  left: 11.875rem;
  bottom: 5.625rem;
  animation: animate1-60375e9b 6s linear;
}
.toastTips .item.item2[data-v-60375e9b] {
  right: 12.5rem;
  animation: animate2-60375e9b 6s linear;
}
.toastTips .item .user[data-v-60375e9b] {
  font-size: 0.75rem;
  transform: scale(0.9);
  display: flex;
  margin-left: -0.5rem;
}
.toastTips .item .user .name[data-v-60375e9b] {
  color: #0fc;
  max-width: 8.125rem;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.toastTips .item .user .tips[data-v-60375e9b] {
  color: #eefffc;
  margin-left: 0.25rem;
  max-width: 11.25rem;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.toastTips .item .info[data-v-60375e9b] {
  font-size: 0.8125rem;
  color: #ffcc2f;
  max-width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.toastTips .item .soundIcon[data-v-60375e9b] {
  width: 7.5rem;
  height: 1.375rem;
}
@keyframes animate1-60375e9b {
0% {
    transform: translate(0) scale(0.5);
    opacity: 0;
}
50% {
    opacity: 1;
    transform: translate(-8.75rem, -11.25rem) scale(1.2);
}
55% {
    opacity: .5;
}
70% {
    opacity: 0;
}
100% {
    transform: translate(-12.5rem, -25rem) scale(0.5);
    opacity: 0;
}
}
@keyframes animate2-60375e9b {
0% {
    transform: translate(0) scale(0.5);
    opacity: 0;
}
50% {
    opacity: 1;
    transform: translate(0, -11.25rem) scale(1.2);
}
60% {
    opacity: .5;
}
70% {
    opacity: 0;
}
100% {
    transform: translate(0, -23.75rem) scale(0.5);
    opacity: 0;
}
}
@font-face {
  font-family: "xiaomi";
  font-weight: normal;
  font-style: normal;
  font-display: auto;
  unicode-range: U+000-5FF;
  src: url("https://reading.oss.iyougu.com/uploads/mp/font/xiaomi.ttf") format("truetype");
}
@font-face {
  font-family: "dinAlternateBold";
  font-weight: normal;
  font-style: normal;
  font-display: auto;
  unicode-range: U+000-5FF;
  src: url("https://reading-oss.oss-cn-shenzhen.aliyuncs.com/uploads/typeface/DINAlternateBold.ttf") format("truetype");
}
[data-v-6e58276a]::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}
.readingDataAnalysis[data-v-6e58276a] {
  width: 100%;
  height: 100vh;
  min-width: 100rem;
  background-color: #01100d;
  background-image: url("https://reading.oss.iyougu.com/uploads/sjfx_icon/readStage_bg.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  display: flex;
  flex-direction: column;
  color: #fff;
}
.readingDataAnalysis .container[data-v-6e58276a] {
  width: 100%;
  height: 100%;
  overflow-y: auto;
}
.readingDataAnalysis .oagaName[data-v-6e58276a] {
  width: 100%;
  height: 6.3125rem;
  background: url("https://reading.oss.iyougu.com/uploads/sjfx_icon/2023_09_21_bar_bg.png") no-repeat;
  background-size: 100% 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #dcfff8;
}
.readingDataAnalysis .oagaName .txt[data-v-6e58276a] {
  max-width: 70.75rem;
  white-space: wrap;
  text-align: center;
  margin-top: -1.375rem;
  font-size: 2.5rem;
}
.readingDataAnalysis .oagaName .txt.wrapTxt[data-v-6e58276a] {
  font-size: 2rem;
  margin-top: -0.9375rem;
  line-height: 2.375rem;
}
.readingDataAnalysis .content[data-v-6e58276a] {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 2.375rem 3.125rem 0;
  box-sizing: border-box;
}
.readingDataAnalysis .content .module[data-v-6e58276a] {
  width: 27.5rem;
  display: flex;
  flex-direction: column;
}
.readingDataAnalysis .content .module.module2[data-v-6e58276a] {
  width: 57.5rem;
  margin-left: 1.25rem;
}
.readingDataAnalysis .content .module .analyBox[data-v-6e58276a] {
  margin: 2rem 0 0.625rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.readingDataAnalysis .content .module .analyBox .item[data-v-6e58276a] {
  width: 12.8125rem;
  height: 8.8125rem;
  background: url("https://reading.oss.iyougu.com/uploads/sjfx_icon/2023_09_21_item_bg1.png") no-repeat;
  background-size: 100% 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 0 0.875rem 1.4375rem 0;
}
.readingDataAnalysis .content .module .analyBox .item[data-v-6e58276a]:nth-child(2n) {
  margin-right: 0;
}
.readingDataAnalysis .content .module .analyBox .item .num[data-v-6e58276a] {
  color: #0fc;
  font-size: 1.875rem;
  font-family: "dinAlternateBold";
  font-weight: bolder;
}
.readingDataAnalysis .content .module .analyBox .item .lab[data-v-6e58276a] {
  font-size: 1rem;
}
.readingDataAnalysis .content .module .rankList[data-v-6e58276a] {
  margin-top: 1.875rem;
  width: 26.25rem;
  height: 26.875rem;
  overflow-y: auto;
}
.readingDataAnalysis .content .module .rankList .rankItem[data-v-6e58276a] {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0.75rem 0;
  box-sizing: border-box;
  box-shadow: inset 0 0 3.125rem 0 rgba(0,255,204,.15);
  background: rgba(28,184,153,.1);
  border-radius: 0.25rem;
}
.readingDataAnalysis .content .module .rankList .rankItem[data-v-6e58276a]:nth-child(2n) {
  background: rgba(0,0,0,.2);
  box-shadow: none;
}
.readingDataAnalysis .content .module .rankList .rankItem .rank[data-v-6e58276a] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.875rem;
  height: 1.875rem;
  margin-left: 1.25rem;
}
.readingDataAnalysis .content .module .rankList .rankItem .rank .icon[data-v-6e58276a] {
  width: 1.875rem;
  height: 1.875rem;
}
.readingDataAnalysis .content .module .rankList .rankItem .rank .num[data-v-6e58276a] {
  color: #eefffc;
  font-size: 1.25rem;
}
.readingDataAnalysis .content .module .rankList .rankItem .bookImg[data-v-6e58276a] {
  width: 2.8125rem;
  height: 3.75rem;
  border-radius: 0.25rem;
  margin-left: 1.25rem;
}
.readingDataAnalysis .content .module .rankList .rankItem .details[data-v-6e58276a] {
  flex: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 1.25rem 0 0.625rem;
  height: 3.75rem;
}
.readingDataAnalysis .content .module .rankList .rankItem .details .info[data-v-6e58276a] {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.readingDataAnalysis .content .module .rankList .rankItem .details .info.noAuthor[data-v-6e58276a] {
  justify-content: center;
}
.readingDataAnalysis .content .module .rankList .rankItem .details .info .name[data-v-6e58276a] {
  font-size: 0.875rem;
  max-width: 8.9375rem;
  white-space: wrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.readingDataAnalysis .content .module .rankList .rankItem .details .info .author[data-v-6e58276a] {
  opacity: .8;
  font-size: 0.75rem;
  max-width: 8.25rem;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.readingDataAnalysis .content .module .rankList .rankItem .details .count[data-v-6e58276a] {
  color: #0fc;
  font-size: 1.5rem;
  font-family: "dinAlternateBold";
}
.readingDataAnalysis .content .module .dataList[data-v-6e58276a] {
  margin: 2rem 0 0.8125rem 0;
  display: flex;
  flex-wrap: wrap;
}
.readingDataAnalysis .content .module .dataList .item[data-v-6e58276a] {
  display: flex;
  align-items: center;
  margin: 0 1.1875rem 1.25rem 0;
}
.readingDataAnalysis .content .module .dataList .item.item2[data-v-6e58276a],
.readingDataAnalysis .content .module .dataList .item.item5[data-v-6e58276a] {
  margin-right: 0;
}
.readingDataAnalysis .content .module .dataList .item.item1[data-v-6e58276a],
.readingDataAnalysis .content .module .dataList .item.item2[data-v-6e58276a] {
  width: 25.6875rem;
  height: 8.875rem;
  background: url("https://reading.oss.iyougu.com/uploads/sjfx_icon/2023_09_21_item_bg2.png") no-repeat;
  background-size: 100% 100%;
}
.readingDataAnalysis .content .module .dataList .item.item3[data-v-6e58276a],
.readingDataAnalysis .content .module .dataList .item.item4[data-v-6e58276a],
.readingDataAnalysis .content .module .dataList .item.item5[data-v-6e58276a] {
  width: 16.75rem;
  height: 8.875rem;
  background: url("https://reading.oss.iyougu.com/uploads/sjfx_icon/2023_09_21_item_bg3.png") no-repeat;
  background-size: 100% 100%;
}
.readingDataAnalysis .content .module .dataList .item .iconBox[data-v-6e58276a] {
  width: 3.75rem;
  height: 3.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 2rem;
}
.readingDataAnalysis .content .module .dataList .item .iconBox .icon[data-v-6e58276a] {
  width: 100%;
  height: 100%;
}
.readingDataAnalysis .content .module .dataList .item .details[data-v-6e58276a] {
  display: flex;
  flex-direction: column;
  margin-left: 1.5625rem;
  position: relative;
}
.readingDataAnalysis .content .module .dataList .item .details[data-v-6e58276a]::before {
  content: "";
  width: 0.0625rem;
  height: 4.6875rem;
  background: #0d7661;
  position: absolute;
  top: 50%;
  left: -0.75rem;
  transform: translateY(-50%);
}
.readingDataAnalysis .content .module .dataList .item .details .num[data-v-6e58276a] {
  color: #0fc;
  font-size: 1.875rem;
  font-weight: bold;
  font-family: "dinAlternateBold";
}
.readingDataAnalysis .content .module .dataList .item .details .count[data-v-6e58276a] {
  display: flex;
  align-items: center;
}
.readingDataAnalysis .content .module .dataList .item .details .count .lab[data-v-6e58276a] {
  font-size: 0.875rem;
  opacity: .8;
  margin: 0 0.3125rem;
}
.readingDataAnalysis .content .module .dataList .item .details .name[data-v-6e58276a] {
  font-size: 1rem;
}
.readingDataAnalysis .content .module .toastBox[data-v-6e58276a] {
  height: 31.125rem;
  padding: 2.1875rem 0;
  box-sizing: border-box;
  overflow: hidden;
}
.readingDataAnalysis .content .module .plotBox[data-v-6e58276a] {
  height: 23.125rem;
  padding-top: 2.5rem;
  box-sizing: border-box;
  position: relative;
}
.readingDataAnalysis .content .module .plotBox .chatBox[data-v-6e58276a] {
  position: relative;
  margin: 0 0 0 6.875rem;
  width: 12.5rem;
  height: 12.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.readingDataAnalysis .content .module .plotBox .chatBox[data-v-6e58276a]::before {
  content: "";
  width: 12.5rem;
  height: 12.5rem;
  border: 0.0625rem solid rgba(0,255,204,.2);
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
}
.readingDataAnalysis .content .module .plotBox .chatBox[data-v-6e58276a]::after {
  content: "";
  width: 11.8125rem;
  height: 11.8125rem;
  background: rgba(97,222,197,.1);
  opacity: .9;
  border: 0.0625rem dashed rgba(0,255,204,.35);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}
.readingDataAnalysis .content .module .plotBox .chatBox .pie[data-v-6e58276a] {
  width: 11.5rem;
  height: 11.5rem;
  position: relative;
  z-index: 1;
}
.readingDataAnalysis .content .module .plotBox .chatBox .mask[data-v-6e58276a] {
  width: 5rem;
  height: 5rem;
  background: rgba(0,0,0,.5);
  opacity: .9;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 2;
}
.readingDataAnalysis .content .module .plotBox .tips[data-v-6e58276a] {
  position: absolute;
  right: 0;
  top: 2.5rem;
  font-size: 0.75rem;
  opacity: .8;
}
.readingDataAnalysis .content .module .plotBox .emptyTips[data-v-6e58276a] {
  text-align: center;
  font-size: 1rem;
  margin-top: 2.5rem;
  opacity: .8;
}
.readingDataAnalysis .content .module .plotBox .legendList[data-v-6e58276a] {
  display: flex;
  flex-wrap: wrap;
  margin-top: 0.625rem;
  width: 100%;
  padding-left: 0.875rem;
  box-sizing: border-box;
}
.readingDataAnalysis .content .module .plotBox .legendList .item[data-v-6e58276a] {
  width: 33.33%;
  display: flex;
  align-items: center;
  margin-bottom: 0.625rem;
}
.readingDataAnalysis .content .module .plotBox .legendList .item .squre[data-v-6e58276a] {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 0.125rem;
  opacity: .9;
}
.readingDataAnalysis .content .module .plotBox .legendList .item .name[data-v-6e58276a] {
  font-size: 0.75rem;
  opacity: .8;
  margin: 0 0.625rem;
  line-height: 0.75rem;
  max-width: 4.375rem;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.readingDataAnalysis .content .module .plotBox .legendList .item .value[data-v-6e58276a] {
  font-size: 0.875rem;
  line-height: 0.875rem;
}
.readingDataAnalysis .content .module .rankBox .tabBox[data-v-6e58276a] {
  display: flex;
  align-items: center;
  width: 100%;
  max-height: 2.4375rem;
  margin-top: 1rem;
  line-height: 2.4375rem;
  background: linear-gradient(90deg, rgba(0, 86, 69, 0) 0%, rgba(0, 77, 61, 0.2) 60%, rgba(0, 77, 61, 0) 100%);
  border: 0.0625rem solid;
  border-image: linear-gradient(90deg, rgba(0, 58, 46, 0), rgba(94, 255, 223, 0.1), rgba(1, 72, 58, 0)) 1 1;
}
.readingDataAnalysis .content .module .rankBox .tabBox .tabItem[data-v-6e58276a] {
  font-size: 0.875rem;
  width: 33.33%;
  position: relative;
  height: 2.4375rem;
  text-align: center;
  position: relative;
}
.readingDataAnalysis .content .module .rankBox .tabBox .tabItem .name[data-v-6e58276a] {
  position: relative;
  z-index: 1;
}
.readingDataAnalysis .content .module .rankBox .tabBox .tabItem .mask_bg[data-v-6e58276a] {
  width: 9.4375rem;
  height: 3.125rem;
  background: url("https://reading.oss.iyougu.com/uploads/sjfx_icon/2023_09_04_tab_bg.png") no-repeat;
  background-size: 100% 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.readingDataAnalysis .content .module .rankBox .list[data-v-6e58276a] {
  margin-top: 1.5rem;
  height: 23.125rem;
  overflow-y: auto;
}
.readingDataAnalysis .content .module .rankBox .list .item[data-v-6e58276a] {
  display: flex;
  align-items: center;
  padding: 0.75rem 1.25rem;
  box-sizing: border-box;
  box-shadow: inset 0 0 3.125rem 0 rgba(0,255,204,.15);
  background: rgba(28,184,153,.1);
  border-radius: 0.25rem;
}
.readingDataAnalysis .content .module .rankBox .list .item[data-v-6e58276a]:nth-child(2n) {
  background: rgba(0,0,0,.2);
  box-shadow: none;
}
.readingDataAnalysis .content .module .rankBox .list .item .iconWrap[data-v-6e58276a] {
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.readingDataAnalysis .content .module .rankBox .list .item .iconWrap .icon[data-v-6e58276a] {
  width: 100%;
  height: 100%;
}
.readingDataAnalysis .content .module .rankBox .list .item .iconWrap .num[data-v-6e58276a] {
  font-size: 1.25rem;
}
.readingDataAnalysis .content .module .rankBox .list .item .avatar_img[data-v-6e58276a] {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  margin: 0 1.1875rem 0 0.6875rem;
}
.readingDataAnalysis .content .module .rankBox .list .item .details[data-v-6e58276a] {
  flex: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.readingDataAnalysis .content .module .rankBox .list .item .details .name[data-v-6e58276a] {
  max-width: 5.625rem;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  font-size: 0.875rem;
}
.readingDataAnalysis .content .module .rankBox .list .item .details .timeCount[data-v-6e58276a] {
  display: flex;
  align-items: center;
}
.readingDataAnalysis .content .module .rankBox .list .item .details .timeCount .num[data-v-6e58276a] {
  color: #0fc;
  font-size: 1.5rem;
  font-family: "dinAlternateBold";
  margin: 0 0.1875rem;
}
.readingDataAnalysis .content .module .rankBox .list .item .details .timeCount .txt[data-v-6e58276a] {
  font-size: 0.75rem;
  opacity: .8;
}
.readingDataAnalysis .content .module .empty[data-v-6e58276a] {
  width: 100%;
  height: 26.25rem;
}
.readingDataAnalysis .content .module .bottomTips[data-v-6e58276a] {
  opacity: .8;
  font-size: 0.875rem;
  line-height: 1.875rem;
  text-align: center;
}
