@charset "UTF-8";
/* Make clicks pass-through */
#nprogress {
  pointer-events: none;
}
#nprogress .bar {
  background: #29d;

  position: fixed;
  z-index: 1031;
  top: 0;
  left: 0;

  width: 100%;
  height: 2px;
}
/* Fancy blur effect */
#nprogress .peg {
  display: block;
  position: absolute;
  right: 0px;
  width: 100px;
  height: 100%;
  box-shadow: 0 0 10px #29d, 0 0 5px #29d;
  opacity: 1.0;
  transform: rotate(3deg) translate(0px, -4px);
}
/* Remove these to get rid of the spinner */
#nprogress .spinner {
  display: block;
  position: fixed;
  z-index: 1031;
  top: 15px;
  right: 15px;
}
#nprogress .spinner-icon {
  width: 18px;
  height: 18px;
  box-sizing: border-box;

  border: solid 2px transparent;
  border-top-color: #29d;
  border-left-color: #29d;
  border-radius: 50%;

  -webkit-animation: nprogress-spinner 400ms linear infinite;
          animation: nprogress-spinner 400ms linear infinite;
}
.nprogress-custom-parent {
  overflow: hidden;
  position: relative;
}
.nprogress-custom-parent #nprogress .spinner,
.nprogress-custom-parent #nprogress .bar {
  position: absolute;
}
@-webkit-keyframes nprogress-spinner {
  0%   { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}
@keyframes nprogress-spinner {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


:root {
  --primary-color: #01d567;
  --link-color: #53637a;
  --text-color: #4f4f4f;
  --danger-color: #e5675c;
  --weak-text-color: #999;
}

html,
body {
  width: 100%;
  height: 100%;
  font: 14px/1.6 Helvetica Neue, Helvetica, PingFang SC, Hiragino Sans GB,
    Microsoft YaHei, SimSun, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body {
  background-color: #fff;
}

header {
  width: 100%;
  padding: 0 50px;
  height: 64px;
  line-height: 64px;
  background: #000;
  color: #fff;
  min-width: 1200px;
  box-sizing: border-box;
  position: fixed;
  z-index: 25;
  top: 0;
}

.header-links {
  float: right;
  display: none;
  font-size: 14px;
  /* margin-right: 80px; */
  height: 64px;
}

.header-links .header-title {
  margin-right: 50px;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.header-links .header-title:hover {
  color: #00CE93;
}

.header-links .header-title.active {
  color: #00CE93;
}

@media screen and (min-width: 720px) {
  .header-links {
    display: block;
  }
}

.dev-doc {
  display: inline-block;
  margin: 0 50px;
  position: relative;
}

.dev-doc::after {
  content: "";
  width: 152px;
  height: 2px;
  position: absolute;
  top: 64px;
  left: -16px;
}

.dev-doc span{
  display: block;
  padding-right: 20px;
  position: relative;
  cursor: default;
}

.dev-doc span::after{
  content: "";
  width: 10px;
  height: 6px;
  position: absolute;
  right: 0;
  top: 28px;
  background: url(https://p4.ssl.qhimg.com/t01b2f1ef3d33e82d78.png) no-repeat center center;
  background-size: contain;
  transition: transform .3s
}

.dev-doc:hover span::after{
  transform: rotate(-180deg);
}

.dev-doc div{
  display: none;
  width: 152px;
  padding: 8px 16px;
  position: absolute;
  left: -16px;
  top: 66px;
  background: #000;
  border-radius: 4px;
}

.dev-doc:hover div{
  display: block;
}

.dev-doc div a{
 display: block;
 line-height: 40px;
 color: #fff;
 text-decoration: none;
}

.dev-doc div a:hover{
 color: #00CE93;
}

.dev-doc div em{
 display: block;
 height: 1px;
 background:rgba(255,255,255,1);
 opacity: .2;
 margin: 9px 0;
}

.logo {
  color: #fff;
  text-decoration: none;

  background-color: transparent;
  outline: none;
  cursor: pointer;
  font-size: 20px;
  float: left;
}

.logo img {
  width: 24px;
  height: 24px;
  vertical-align: -4px;
}

.race-img {
  float: left;
  margin: 16px 32px 0 0;
  width: 144px;
  cursor: pointer;
}

h1 {
  margin: 0;
}

/**
 * content
 */

.markdown-body {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 30px;
  line-height: 1.8
}

.markdown-body a {
    color: #01d567;
    color: var(--primary-color);
  }

.markdown-body:empty {
    display: none;
  }

.markdown-body pre .hljs-tag {
    color: #63a35c;
  }

.markdown-body h1,
  .markdown-body h2,
  .markdown-body h3,
  .markdown-body h4 {
    font-weight: 500;
  }

.markdown-body table {
    min-width: 61.8%;
  }

/* scrollbar */

::-webkit-scrollbar {
  background-color: transparent;
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-thumb {
  background-color: rgba(50, 50, 50, 0.65);
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 3px;
}

.vue-demo-block .vue-demo {
  margin: 30px 0 15px;
}

/* 活动弹出框 */

.act-dialog {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 500;
  background:rgba(0, 0, 0, 0.45);
  display: none;
}

.act-dialog.active {
  display: block;
}

.act-dialog-inner {
  width: 420px;
    background: #fff;
    margin: 0 auto;
    border-radius: 4px;
    box-shadow:0px 4px 14px 0px rgba(0,0,0,0.16);
    transform: translate(-50%, -50%);
    overflow: hidden;
    position: absolute;
    left: 50%;
    top: 50%;
    color: #555;
}

.act-dialog-inner i {
  position: absolute;
  right: 0;
  top: 0;
  width: 24px;
  height: 24px;
  background: url(https://p5.ssl.qhimg.com/t014c530f135853a771.png) no-repeat 0 0;
  background-size: 100% 100%;
  cursor: pointer;
}

.act-dialog-inner img {
  display: block;
}

.act-dialog-inner div {
  line-height: 24px;
  padding: 24px;
  margin: 0;
}

.act-dialog-inner b {
  color: #350CFF;
  font-weight: normal;
  font-size: 16px;
}

.act-dialog-inner em {
  color: #ef454f;
  font-style: normal;
}

.act-dialog-inner button {
  background: #0156FD;
  font-size: 16px;
  color: #fff;
  border-radius: 19px;
  height: 38px;
  display: block;
  width: 356px;
  margin: 0 auto;
  font-weight: bold;
  border: none;
}

.act-dialog-inner p {
  text-align: center;
  padding: 24px;
  margin: 0;
  color: #999;
}

.act-dialog-inner a {
  color: #0079FF;
  text-decoration: none;
}

.logreg {
  display: inline-block;
}

.logreg .login, .logreg .regist {
  display: inline-block;
  cursor: pointer;
  height: 32px;
  line-height: 32px;
  text-align: center;
}

.logreg .login {
  position: relative;
  margin-right: 16px;
  width: 60px;
  border-radius: 16px;
  border: 1px solid #fff;
}

.userinfo {
  display: inline-block;
  position: relative;
  padding-left: 15px;
}

.userinfo .avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  vertical-align: middle;
  margin-right: 10px;
}

.userinfo .nickname::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
  position: absolute;
  right: -15px;
  top: 25px;
}

.user-msg {
  display: inline-block;
  width: 64px;
  height: 100%;
  text-align: center;
  position: relative;
}

.user-msg img {
  vertical-align: -6px;
}

.user-msg.has-msg::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background: #ef454f;
  border-radius: 7px;
  color: #fff;
  position: absolute;
  right: 10px;
  top: 15px;
  z-index: 23;
}

.logoutbox {
  width: 100%;
  min-width: 140px;
  height: 36px;
  background: #fff;
  box-shadow: 0 2px 8px 0 rgba(0,0,0,.15);
  position: absolute;
  z-index: 2;
  display: none;
  line-height: 36px;
  height: 36px;
  text-align: center;
  color: #666;
}

.userinfo:hover .logoutbox {
  display: block;
}

.logoutbox:hover {
  background: #f4f4f4;
}

.toast {
  background: #fff;
  position: fixed;
  top: 16px;
  left: 50%;
  /* transform: translateX(-50%) translateY(-57px); */
  z-index: 100;
  /* opacity: 0; */
}

.toast.show{
  -webkit-animation: fadein .3s ease-in-out;
          animation: fadein .3s ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.toast.hide{
  -webkit-animation: fadeout .15s ease-in-out;
          animation: fadeout .15s ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes fadein {
  from{
    transform: translateX(-50%) translateY(-57px);
    opacity: 0;
  }
  to {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
}

@keyframes fadein {
  from{
    transform: translateX(-50%) translateY(-57px);
    opacity: 0;
  }
  to {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
}

@-webkit-keyframes fadeout {
  0%{
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateX(-50%) translateY(-28px);
    opacity: 0;
  }
  100% {
    transform: translateX(-50%) translateY(-28px);
    opacity: 0;
  }
}

@keyframes fadeout {
  0%{
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateX(-50%) translateY(-28px);
    opacity: 0;
  }
  100% {
    transform: translateX(-50%) translateY(-28px);
    opacity: 0;
  }
}

.toast div {
  line-height: 21px;
  height: 21px;
  padding: 10px 16px;
  background: #fff;
  border-radius: 2px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  pointer-events: all;
  font-size: 0;
}

.toast i {
  color: #f5222d;
  width: 16px;
  height: 16px;
  display: inline-block;
  font-size: 16px;
  position: relative;
  top: 2px;
  margin-right: 8px;
  font-size: 16px;
}

.toast span {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.65);
}

:root {
  --aside-width: 260px;
  --header-height: 64px;
}

aside {
  box-sizing: border-box;
  margin-top: 64px;
  margin-top: var(--header-height);
  color: #4d4e52;

  font-size: 14px;
  line-height: 3;
  background: #fff;

  border-right: 1px solid #eff0f2;
  box-shadow: -1px 0 0 0 rgba(239, 240, 242, 1);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

@media screen and (min-width: 720px) {
  aside {
    position: fixed;
    top: 64px;
    top: var(--header-height);
    margin-top: 0;

    width: 260px;

    width: var(--aside-width);
    height: calc(100vh - 64px);
    height: calc(100vh - var(--header-height));
    overflow: hidden;
  }

  .side-nav {
    box-sizing: border-box;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: calc(260px + 18px);
    width: calc(var(--aside-width) + 18px);
    padding: 20px 0 50px;
    overflow-y: auto;
  }

  .side-nav > .se-menu {
    width: 260px;
    width: var(--aside-width);
  }

  .main {
    padding-top: 64px;
    padding-top: var(--header-height);
    margin-left: 260px;
    margin-left: var(--aside-width);
  }
}

.markdown-body {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  color: #24292e;
  line-height: 1.5;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial,
    sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
  font-size: 16px;
  line-height: 1.5;
  word-wrap: break-word;
}

.markdown-body a:active,
.markdown-body a:hover {
  outline-width: 0;
}

.markdown-body strong {
  font-weight: inherit;
  font-weight: bolder;
}

.markdown-body > h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

.markdown-body code,
.markdown-body kbd,
.markdown-body pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

.markdown-body > hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

/*
.markdown-body * {
  box-sizing: border-box;
} */

.markdown-body a {
  color: #0366d6;
  text-decoration: none;
}

.markdown-body a:hover {
  text-decoration: underline;
}

.markdown-body strong {
  font-weight: 600;
}

.markdown-body > hr {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #dfe2e5;
  height: 0;
  margin: 15px 0;
  overflow: hidden;
}

.markdown-body > hr:before {
  content: "";
  display: table;
}

.markdown-body > hr:after {
  clear: both;
  content: "";
  display: table;
}

.markdown-body > table {
  border-collapse: collapse;
  border-spacing: 0;
}

.markdown-body > table td,
.markdown-body > table th {
  padding: 0;
}

.markdown-body > h1,
.markdown-body > h2,
.markdown-body > h3,
.markdown-body > h4,
.markdown-body > h5,
.markdown-body > h6 {
  margin-bottom: 0;
  margin-top: 0;
}

.markdown-body > h1 {
  font-size: 32px;
}

.markdown-body > h1,
.markdown-body > h2 {
  font-weight: 600;
}

.markdown-body > h2 {
  font-size: 24px;
}

.markdown-body > h3 {
  font-size: 20px;
}

.markdown-body > h3,
.markdown-body > h4 {
  font-weight: 600;
}

.markdown-body > h4 {
  font-size: 16px;
}

.markdown-body > h5 {
  font-size: 14px;
}

.markdown-body > h5,
.markdown-body > h6 {
  font-weight: 600;
}

.markdown-body > h6 {
  font-size: 12px;
}

.markdown-body > p {
  margin-bottom: 10px;
  margin-top: 0;
}

.markdown-body > blockquote {
  margin: 0;
}

.markdown-body ol,
.markdown-body ul {
  margin-bottom: 0;
  margin-top: 0;
  padding-left: 0;
}

.markdown-body ol ol,
.markdown-body ul ol {
  list-style-type: lower-roman;
}

.markdown-body ol ol ol,
.markdown-body ol ul ol,
.markdown-body ul ol ol,
.markdown-body ul ul ol {
  list-style-type: lower-alpha;
}

.markdown-body dd {
  margin-left: 0;
}

.markdown-body code,
.markdown-body pre {
  font-family: SFMono-Regular, Consolas, Liberation Mono, Menlo, Courier,
    monospace;
  font-size: 12px;
}

.markdown-body pre {
  margin-bottom: 0;
  margin-top: 0;
}

.markdown-body:before {
  content: "";
  display: table;
}

.markdown-body:after {
  clear: both;
  content: "";
  display: table;
}

.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 > blockquote,
.markdown-body dl,
.markdown-body ol,
.markdown-body > p,
.markdown-body pre,
.markdown-body > table,
.markdown-body ul {
  margin-bottom: 16px;
  margin-top: 0;
}

.markdown-body > hr {
  background-color: #e1e4e8;
  border: 0;
  height: 0.25em;
  margin: 24px 0;
  padding: 0;
}

.markdown-body > blockquote {
  border-left: 0.25em solid #dfe2e5;
  color: #6a737d;
  padding: 0 1em;
}

.markdown-body > blockquote > :first-child {
  margin-top: 0;
}

.markdown-body > blockquote > :last-child {
  margin-bottom: 0;
}

.markdown-body kbd {
  background-color: #fafbfc;
  border: 1px solid #c6cbd1;
  border-bottom-color: #959da5;
  border-radius: 3px;
  box-shadow: inset 0 -1px 0 #959da5;
  color: #444d56;
  display: inline-block;
  font-size: 11px;
  line-height: 10px;
  padding: 3px 5px;
  vertical-align: middle;
}

.markdown-body > h1,
.markdown-body > h2,
.markdown-body > h3,
.markdown-body > h4,
.markdown-body > h5,
.markdown-body > h6 {
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 16px;
  margin-top: 24px;
}

.markdown-body > h1 {
  font-size: 2em;
}

.markdown-body > h1,
.markdown-body > h2 {
  border-bottom: 1px solid #eaecef;
  padding-bottom: 0.3em;
}

.markdown-body > h2 {
  font-size: 1.5em;
}

.markdown-body > h3 {
  font-size: 1.25em;
}

.markdown-body > h4 {
  font-size: 1em;
}

.markdown-body > h5 {
  font-size: 0.875em;
}

.markdown-body > h6 {
  color: #6a737d;
  font-size: 0.85em;
}

.markdown-body ol,
.markdown-body ul {
  padding-left: 2em;
}

.markdown-body ol ol,
.markdown-body ol ul,
.markdown-body ul ol,
.markdown-body ul ul {
  margin-bottom: 0;
  margin-top: 0;
}

.markdown-body li {
  word-wrap: break-all;
}

.markdown-body li > p {
  margin-top: 16px;
}

.markdown-body li + li {
  margin-top: 0.25em;
}

.markdown-body dl {
  padding: 0;
}

.markdown-body > dl dt {
  font-size: 1em;
  font-style: italic;
  font-weight: 600;
  margin-top: 16px;
  padding: 0;
}

.markdown-body > dl dd {
  margin-bottom: 16px;
  padding: 0 16px;
}

.markdown-body > table {
  display: block;
  overflow: auto;
  width: 100%;
}

.markdown-body > table th {
  font-weight: 600;
}

.markdown-body > table td,
.markdown-body > table th {
  border: 1px solid #dfe2e5;
  padding: 6px 13px;
}

.markdown-body > table tr {
  background-color: #fff;
  border-top: 1px solid #c6cbd1;
}

.markdown-body > table tr:nth-child(2n) {
  background-color: #f6f8fa;
}

.markdown-body > p > img {
  background-color: #fff;
  box-sizing: content-box;
  max-width: 100%;
}

.markdown-body code {
  background-color: rgba(27, 31, 35, 0.05);
  border-radius: 3px;
  font-size: 85%;
  margin: 0;
  padding: 0.2em 0.4em;
}

.markdown-body pre {
  word-wrap: normal;
}

.markdown-body pre > code {
  background: transparent;
  border: 0;
  font-size: 100%;
  margin: 0;
  padding: 0;
  white-space: pre;
  word-break: normal;
}

.markdown-body .highlight {
  margin-bottom: 16px;
}

.markdown-body .highlight pre {
  margin-bottom: 0;
  word-break: normal;
}

.markdown-body .highlight pre,
.markdown-body pre {
  background-color: #f6f8fa;
  border-radius: 3px;
  font-size: 85%;
  line-height: 1.45;
  overflow: auto;
  padding: 16px;
}

.markdown-body pre code {
  background-color: transparent;
  border: 0;
  display: inline;
  line-height: inherit;
  margin: 0;
  max-width: auto;
  overflow: visible;
  padding: 0;
  word-wrap: normal;
}

.markdown-body kbd {
  background-color: #fafbfc;
  border: 1px solid #d1d5da;
  border-bottom-color: #c6cbd1;
  border-radius: 3px;
  box-shadow: inset 0 -1px 0 #c6cbd1;
  color: #444d56;
  display: inline-block;
  font: 11px SFMono-Regular, Consolas, Liberation Mono, Menlo, Courier,
    monospace;
  line-height: 10px;
  padding: 3px 5px;
  vertical-align: middle;
}

.markdown-body > hr {
  border-bottom-color: #eee;
}

.vue-demo-block {
  display: inline-block;
  width: 100%;
  margin-bottom: 1em;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.2s;
  font-size: 14px;
}

.vue-demo-block:hover {
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
}

.vue-demo-block > .vue-demo {
  margin: 2em;
}

.vue-demo-block > pre {
  height: 0;
  margin: 0;
  padding: 0;
  overflow-x: auto;
  overflow-y: hidden;
  border-radius: 0;
  transition: height 0.2s linear;
}

.vue-demo-block > pre > code {
  display: block;
  padding: 2em 2.5em;
  line-height: 1.8;
}

.vue-demo-block > pre::-webkit-scrollbar {
  width: 4px;
  height: 3px;
  background-color: #eee;
}

.vue-demo-block > pre::-webkit-scrollbar-thumb {
  background: #cecece;
}

.vue-demo-block-demo-only,
.vue-demo-block-demo-only:hover {
  box-shadow: none;
}

.vue-demo-block-demo-only > * {
  display: none !important;
}

.vue-demo-block-demo-only > .vue-demo {
  display: block !important;
  margin: 0;
  overflow: hidden;
}

.vue-demo-tools {
  position: relative;
}

.vue-demo-tools > input {
  position: absolute;
  cursor: pointer;
  clip: rect(0, 0, 0, 0);
}

.vue-demo-tools > label {
  display: block;
  font-size: 13px;
  line-height: 3;
  text-align: center;
  background: #eee;
  cursor: pointer;
}

.vue-demo-tools > label:hover {
  color: #2196f3;
  background: #eff3f6;
}

.vue-demo-tools > label::after {
  content: "⇓ 显示代码";
}

.vue-demo-tools > input:checked ~ label {
  border-bottom: 1px dashed #ddd;
}

.vue-demo-tools > input:checked ~ label::after {
  content: "⇑ 隐藏代码";
}

.vue-demo-tools > .vue-demo-tool-snippets {
  position: absolute;
  top: 100%;
  right: 0;
  margin: 4px;
}

.vue-demo-tool-snippets {
  opacity: 0;
  transition: all 0.4s ease;
}

.vue-demo-source-code,
.vue-demo-source-code code {
  background: #f2f2f2 !important;
}

.vue-demo-source-code {
  margin: 0 !important;
  padding: 0 !important;
}

.vue-demo-source-code code {
  display: block !important;
  padding: 16px !important;
}

.icon-toggle {
  vertical-align: middle; }

.icon-toggle.collapsed {
  transform: rotate(180deg); }

.se-menu-item {
  cursor: pointer; }

.se-menu-item > a {
    box-sizing: border-box;
    display: block;
    text-decoration: none;
    color: #666;
    transition: all 0.35s;
    border-left: 5px solid transparent; }

.se-menu-item > a:hover {
      color: #333;
      background: rgba(0, 0, 0, 0.03); }

.se-menu-item > a.router-link-exact-active {
      color: #01d567;
      background: rgba(0, 0, 0, 0.05);
      border-color: currentColor; }

.se-menu-item-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 40px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; }

.nav-item {
  padding-right: 40px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; }

.collapse-transition {
  transition: height 0.5s; }
