/* 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%;
  -webkit-box-shadow: 0 0 10px #29d, 0 0 5px #29d;
          box-shadow: 0 0 10px #29d, 0 0 5px #29d;
  opacity: 1.0;

  -webkit-transform: rotate(3deg) translate(0px, -4px);
          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;
  -webkit-box-sizing: border-box;
          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%   { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
}


.banner h1 {
  color: #ffffff !important;
}
.hero-text {
  position: absolute;
  left: 50%;
  top: 50%;
  text-align: center;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.hero-text span {
  color: #ffffff !important;
}

/* 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 */
.more-card:hover {
  -webkit-box-shadow: 0px 5px 25px rgba(0, 40, 117, 0.1);
          box-shadow: 0px 5px 25px rgba(0, 40, 117, 0.1);
}
.more-card .ant-card-cover {
  padding: 24px 24px 0 24px;
}
.more-card .ant-card-body {
  color: #314659;
}
.more-card .ant-card-meta-detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 170px;
}
.more-card .ant-card-meta-detail .ant-card-meta-title {
  min-height: 50px;
  margin-bottom: 16px;
  color: #0d1a26;
  font-weight: 400;
  white-space: normal;
  text-overflow: initial;
  word-break: break-word;
}
.more-card .ant-card-meta-detail .ant-card-meta-description {
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
  color: #697b8c;
}
.more-card .more-card-source {
  float: right;
}
.ant-row-rtl .more-card .more-card-source {
  float: left;
}
.more-card .more-card-source > img {
  vertical-align: baseline;
}
@media (max-width: 576px) {
  .more-card .ant-card-cover {
    margin-bottom: 12px;
    padding: 16px 16px 0 16px;
  }
  .more-card .ant-card-cover img {
    height: 184px;
  }
  .more-card .ant-card-meta-title {
    font-size: 18px;
  }
  .more-card .ant-card-body {
    padding: 16px;
  }
  .more-card .ant-card-body .ant-card-meta-detail {
    min-height: 150px;
  }
}

/* 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 */
.recommend-block {
  position: relative;
  display: block;
  height: 192px;
  overflow: hidden;
  border-radius: 2px;
}
.recommend-block img {
  width: 100%;
  height: 100%;
  vertical-align: top;
  background-clip: cover;
}
.recommend-block::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(30%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.5)));
  background: linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.5) 100%);
  content: '';
  pointer-events: none;
}
.recommend-block .recommend-popularize {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0 8px;
  color: #314659;
  line-height: 28px;
  background: #ffd75a;
  border-radius: 0 0 4px 0;
}
.recommend-block .recommend-content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 0 20px 24px;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.recommend-block .recommend-content .ant-typography {
  margin: 0;
  color: #fff;
}
.recommend-block .recommend-content h4 {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  padding: 0 20px 24px;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: padding 0.3s;
  transition: padding 0.3s;
}
.recommend-block .recommend-content p {
  color: rgba(255, 255, 255, 0.85);
  opacity: 0;
  -webkit-transition: opacity 0.3s, margin 0.3s;
  transition: opacity 0.3s, margin 0.3s;
}
@media (max-width: 576px) {
  .recommend-block h4.ant-typography {
    padding: 0 16px 16px;
    font-size: 18px;
  }
}
@media (min-width: 576px) {
  .recommend-block-main {
    height: 408px;
  }
  .recommend-block:hover .recommend-content {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .recommend-block:hover .recommend-content h4 {
    padding-bottom: 8px;
  }
  .recommend-block:hover .recommend-content p {
    opacity: 1;
  }
}

/* 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 */
.home-container {
  height: 100vh;
  background: url('https://cdn.jevelin.shufflehound.com/coming-soon/wp-content/uploads/sites/16/2018/03/bg.jpg') no-repeat 100% 100%;
}
.home-container h1.ant-typography,
.home-container h2.ant-typography,
.home-container h3.ant-typography,
.home-container h4.ant-typography {
  font-weight: 400;
}
.home-container img {
  -o-object-fit: cover;
     object-fit: cover;
}
.home-container .home-block-content {
  margin: 88px 40px 124px;
}
.home-container .home-block-content h2.ant-typography {
  margin-bottom: 56px;
}
.home-container .home-block-content-extra {
  float: right;
  padding-top: 12px;
  font-weight: 200;
  font-size: 16px;
}
.page-wrapper-rtl .home-container .home-block-content-extra {
  float: left;
}
.home-container .home-link-arrow {
  position: relative;
  margin-left: 0.3em;
  font-size: 0.85em;
  opacity: 0.75;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.home-container a:hover .home-link-arrow {
  -webkit-transform: translateX(3px);
          transform: translateX(3px);
  opacity: 1;
}
@media (max-width: 576px) {
  .home-container .home-block-content {
    margin-top: 64px;
    margin-bottom: 96px;
  }
  .home-container .home-block-content h2.ant-typography {
    margin-bottom: 44px;
  }
}
@media only screen and (max-width: 767.99px) {
  .home-container .home-block-content {
    margin-right: 24px;
    margin-left: 24px;
  }
}

.github-btn {
  font: bold 11px/14px 'Helvetica Neue', Helvetica, Arial, sans-serif;
  height: 20px;
  overflow: hidden;
}
.gh-btn,
.gh-count,
.gh-ico {
  float: left;
}
.gh-btn,
.gh-count {
  padding: 2px 5px 2px 4px;
  color: #333;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  border-radius: 3px;
}
.gh-btn {
  background-color: #eee;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fcfcfc), to(#eee));
  background-image: linear-gradient(to bottom, #fcfcfc 0, #eee 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fcfcfc', endColorstr='#eeeeee', GradientType=0);
  background-repeat: no-repeat;
  border: 1px solid #d5d5d5;
}
.gh-btn:hover,
.gh-btn:focus {
  text-decoration: none;
  background-color: #ddd;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #eee), to(#ddd));
  background-image: linear-gradient(to bottom, #eee 0, #ddd 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#dddddd', GradientType=0);
  border-color: #ccc;
}
.gh-btn:active {
  background-image: none;
  background-color: #dcdcdc;
  border-color: #b5b5b5;
  -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15);
          box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15);
}
.gh-ico {
  width: 14px;
  height: 14px;
  margin-right: 4px;
  background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB2ZXJzaW9uPSIxLjEiIGlkPSJMYXllcl8xIiB4PSIwcHgiIHk9IjBweCIgd2lkdGg9IjQwcHgiIGhlaWdodD0iNDBweCIgdmlld0JveD0iMTIgMTIgNDAgNDAiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMTIgMTIgNDAgNDAiIHhtbDpzcGFjZT0icHJlc2VydmUiPjxwYXRoIGZpbGw9IiMzMzMzMzMiIGQ9Ik0zMiAxMy40Yy0xMC41IDAtMTkgOC41LTE5IDE5YzAgOC40IDUuNSAxNS41IDEzIDE4YzEgMC4yIDEuMy0wLjQgMS4zLTAuOWMwLTAuNSAwLTEuNyAwLTMuMiBjLTUuMyAxLjEtNi40LTIuNi02LjQtMi42QzIwIDQxLjYgMTguOCA0MSAxOC44IDQxYy0xLjctMS4yIDAuMS0xLjEgMC4xLTEuMWMxLjkgMC4xIDIuOSAyIDIuOSAyYzEuNyAyLjkgNC41IDIuMSA1LjUgMS42IGMwLjItMS4yIDAuNy0yLjEgMS4yLTIuNmMtNC4yLTAuNS04LjctMi4xLTguNy05LjRjMC0yLjEgMC43LTMuNyAyLTUuMWMtMC4yLTAuNS0wLjgtMi40IDAuMi01YzAgMCAxLjYtMC41IDUuMiAyIGMxLjUtMC40IDMuMS0wLjcgNC44LTAuN2MxLjYgMCAzLjMgMC4yIDQuNyAwLjdjMy42LTIuNCA1LjItMiA1LjItMmMxIDIuNiAwLjQgNC42IDAuMiA1YzEuMiAxLjMgMiAzIDIgNS4xYzAgNy4zLTQuNSA4LjktOC43IDkuNCBjMC43IDAuNiAxLjMgMS43IDEuMyAzLjVjMCAyLjYgMCA0LjYgMCA1LjJjMCAwLjUgMC40IDEuMSAxLjMgMC45YzcuNS0yLjYgMTMtOS43IDEzLTE4LjFDNTEgMjEuOSA0Mi41IDEzLjQgMzIgMTMuNHoiLz48L3N2Zz4=');
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.gh-count {
  position: relative;
  display: none;
  /* hidden to start */
  margin-left: 4px;
  background-color: #fafafa;
  border: 1px solid #d4d4d4;
}
.gh-count:hover,
.gh-count:focus {
  color: #4183C4;
}
.gh-count:before,
.gh-count:after {
  content: '';
  position: absolute;
  display: inline-block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.gh-count:before {
  top: 50%;
  left: -3px;
  margin-top: -4px;
  border-width: 4px 4px 4px 0;
  border-right-color: #fafafa;
}
.gh-count:after {
  top: 50%;
  left: -4px;
  z-index: -1;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: #d4d4d4;
}
.github-btn-large {
  height: 30px;
}
.github-btn-large .gh-btn,
.github-btn-large .gh-count {
  padding: 3px 10px 3px 8px;
  font-size: 16px;
  line-height: 22px;
  border-radius: 4px;
}
.github-btn-large .gh-ico {
  width: 20px;
  height: 20px;
}
.github-btn-large .gh-count {
  margin-left: 6px;
}
.github-btn-large .gh-count:before {
  left: -5px;
  margin-top: -6px;
  border-width: 6px 6px 6px 0;
}
.github-btn-large .gh-count:after {
  left: -6px;
  margin-top: -7px;
  border-width: 7px 7px 7px 0;
}

.drawer {
  position: fixed;
  top: 0;
  z-index: 9999;
  -webkit-transition: width 0s ease 0.3s, height 0s ease 0.3s, -webkit-transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
  transition: width 0s ease 0.3s, height 0s ease 0.3s, -webkit-transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
  transition: width 0s ease 0.3s, height 0s ease 0.3s, transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
  transition: width 0s ease 0.3s, height 0s ease 0.3s, transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86), -webkit-transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
}
.drawer > * {
  -webkit-transition: opacity 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86), -webkit-transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86), -webkit-box-shadow 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
  transition: opacity 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86), -webkit-transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86), -webkit-box-shadow 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
  transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86), opacity 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86), box-shadow 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
  transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86), opacity 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86), box-shadow 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86), -webkit-transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86), -webkit-box-shadow 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
}
.drawer.drawer-open {
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
  transition: -webkit-transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
  transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
  transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86), -webkit-transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
}
.drawer .drawer-mask {
  background: #000;
  opacity: 0;
  width: 100%;
  height: 0;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: opacity 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86), height 0s ease 0.3s;
  transition: opacity 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86), height 0s ease 0.3s;
}
.drawer-content-wrapper {
  position: absolute;
  background: #fff;
}
.drawer-content {
  overflow: auto;
  z-index: 1;
  position: relative;
}
.drawer-handle {
  position: absolute;
  top: 72px;
  width: 41px;
  height: 40px;
  cursor: pointer;
  z-index: 0;
  text-align: center;
  line-height: 40px;
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
}
.drawer-handle-icon {
  width: 14px;
  height: 2px;
  background: #333;
  position: relative;
  -webkit-transition: background 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
  transition: background 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
}
.drawer-handle-icon:before,
.drawer-handle-icon:after {
  content: '';
  display: block;
  position: absolute;
  background: #333;
  width: 100%;
  height: 2px;
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
  transition: -webkit-transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
  transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
  transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86), -webkit-transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
}
.drawer-handle-icon:before {
  top: -5px;
}
.drawer-handle-icon:after {
  top: 5px;
}
.drawer-left,
.drawer-right {
  width: 0%;
  height: 100%;
}
.drawer-left .drawer-content-wrapper,
.drawer-right .drawer-content-wrapper,
.drawer-left .drawer-content,
.drawer-right .drawer-content {
  height: 100%;
}
.drawer-left.drawer-open,
.drawer-right.drawer-open {
  width: 100%;
}
.drawer-left.drawer-open.no-mask,
.drawer-right.drawer-open.no-mask {
  width: 0%;
}
.drawer-left {
  left: 0;
}
.drawer-left .drawer-handle {
  right: -40px;
  -webkit-box-shadow: 2px 0 8px rgba(0, 0, 0, 0.15);
          box-shadow: 2px 0 8px rgba(0, 0, 0, 0.15);
  border-radius: 0 4px 4px 0;
}
.drawer-left.drawer-open .drawer-content-wrapper {
  -webkit-box-shadow: 2px 0 8px rgba(0, 0, 0, 0.15);
          box-shadow: 2px 0 8px rgba(0, 0, 0, 0.15);
}
.drawer-right {
  right: 0;
}
.drawer-right .drawer-content-wrapper {
  right: 0;
}
.drawer-right .drawer-handle {
  left: -40px;
  -webkit-box-shadow: -2px 0 8px rgba(0, 0, 0, 0.15);
          box-shadow: -2px 0 8px rgba(0, 0, 0, 0.15);
  border-radius: 4px 0 0 4px;
}
.drawer-right.drawer-open .drawer-content-wrapper {
  -webkit-box-shadow: -2px 0 8px rgba(0, 0, 0, 0.15);
          box-shadow: -2px 0 8px rgba(0, 0, 0, 0.15);
}
.drawer-right.drawer-open.no-mask {
  right: 1px;
  -webkit-transform: translateX(1px);
          transform: translateX(1px);
}
.drawer-top,
.drawer-bottom {
  width: 100%;
  height: 0%;
}
.drawer-top .drawer-content-wrapper,
.drawer-bottom .drawer-content-wrapper,
.drawer-top .drawer-content,
.drawer-bottom .drawer-content {
  width: 100%;
}
.drawer-top .drawer-content,
.drawer-bottom .drawer-content {
  height: 100%;
}
.drawer-top.drawer-open,
.drawer-bottom.drawer-open {
  height: 100%;
}
.drawer-top.drawer-open.no-mask,
.drawer-bottom.drawer-open.no-mask {
  height: 0%;
}
.drawer-top .drawer-handle,
.drawer-bottom .drawer-handle {
  left: 50%;
  margin-left: -20px;
}
.drawer-top {
  top: 0;
}
.drawer-top .drawer-handle {
  top: auto;
  bottom: -40px;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  border-radius: 0 0 4px 4px;
}
.drawer-top.drawer-open .drawer-content-wrapper {
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.drawer-bottom {
  bottom: 0;
}
.drawer-bottom .drawer-content-wrapper {
  bottom: 0;
}
.drawer-bottom .drawer-handle {
  top: -40px;
  -webkit-box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.15);
          box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.15);
  border-radius: 4px 4px 0 0;
}
.drawer-bottom.drawer-open .drawer-content-wrapper {
  -webkit-box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.15);
          box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.15);
}
.drawer-bottom.drawer-open.no-mask {
  bottom: 1px;
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
}
.drawer.drawer-open .drawer-mask {
  opacity: 0.3;
  height: 100%;
  -webkit-animation: rcDrawerFadeIn 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
          animation: rcDrawerFadeIn 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
  -webkit-transition: none;
  transition: none;
}
.drawer.drawer-open .drawer-handle-icon {
  background: transparent;
}
.drawer.drawer-open .drawer-handle-icon:before {
  -webkit-transform: translateY(5px) rotate(45deg);
          transform: translateY(5px) rotate(45deg);
}
.drawer.drawer-open .drawer-handle-icon:after {
  -webkit-transform: translateY(-5px) rotate(-45deg);
          transform: translateY(-5px) rotate(-45deg);
}
@-webkit-keyframes rcDrawerFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0.3;
  }
}
@keyframes rcDrawerFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0.3;
  }
}

.searchbox {
  display: inline-block;
  position: relative;
  width: 200px;
  height: 32px !important;
  white-space: nowrap;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  visibility: visible !important;
}

.searchbox .algolia-autocomplete {
  display: block;
  width: 100%;
  height: 100%;
}

.searchbox__wrapper {
  width: 100%;
  height: 100%;
  z-index: 999;
  position: relative;
}

.searchbox__input {
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: background 0.4s ease, -webkit-box-shadow 0.4s ease;
  transition: background 0.4s ease, -webkit-box-shadow 0.4s ease;
  transition: box-shadow 0.4s ease, background 0.4s ease;
  transition: box-shadow 0.4s ease, background 0.4s ease, -webkit-box-shadow 0.4s ease;
  border: 0;
  border-radius: 16px;
  -webkit-box-shadow: inset 0 0 0 1px #cccccc;
          box-shadow: inset 0 0 0 1px #cccccc;
  background: #ffffff !important;
  padding: 0;
  padding-right: 26px;
  padding-left: 32px;
  width: 100%;
  height: 100%;
  vertical-align: middle;
  white-space: normal;
  font-size: 12px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.searchbox__input::-webkit-search-decoration, .searchbox__input::-webkit-search-cancel-button, .searchbox__input::-webkit-search-results-button, .searchbox__input::-webkit-search-results-decoration {
  display: none;
}

.searchbox__input:hover {
  -webkit-box-shadow: inset 0 0 0 1px #b3b3b3;
          box-shadow: inset 0 0 0 1px #b3b3b3;
}

.searchbox__input:focus, .searchbox__input:active {
  outline: 0;
  -webkit-box-shadow: inset 0 0 0 1px #aaaaaa;
          box-shadow: inset 0 0 0 1px #aaaaaa;
  background: #ffffff;
}

.searchbox__input::-webkit-input-placeholder {
  color: #aaaaaa;
}

.searchbox__input:-ms-input-placeholder {
  color: #aaaaaa;
}

.searchbox__input::-ms-input-placeholder {
  color: #aaaaaa;
}

.searchbox__input::-moz-placeholder {
  color: #aaaaaa;
}

.searchbox__input::placeholder {
  color: #aaaaaa;
}

.searchbox__submit {
  position: absolute;
  top: 0;
  margin: 0;
  border: 0;
  border-radius: 16px 0 0 16px;
  background-color: rgba(69, 142, 225, 0);
  padding: 0;
  width: 32px;
  height: 100%;
  vertical-align: middle;
  text-align: center;
  font-size: inherit;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  right: inherit;
  left: 0;
}

.searchbox__submit::before {
  display: inline-block;
  margin-right: -4px;
  height: 100%;
  vertical-align: middle;
  content: '';
}

.searchbox__submit:hover, .searchbox__submit:active {
  cursor: pointer;
}

.searchbox__submit:focus {
  outline: 0;
}

.searchbox__submit svg {
  width: 14px;
  height: 14px;
  vertical-align: middle;
  fill: #6d7e96;
}

.searchbox__reset {
  display: block;
  position: absolute;
  top: 8px;
  right: 8px;
  margin: 0;
  border: 0;
  background: none;
  cursor: pointer;
  padding: 0;
  font-size: inherit;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  fill: rgba(0, 0, 0, 0.5);
}

.searchbox__reset.hide {
  display: none;
}

.searchbox__reset:focus {
  outline: 0;
}

.searchbox__reset svg {
  display: block;
  margin: 4px;
  width: 8px;
  height: 8px;
}

.searchbox__input:valid ~ .searchbox__reset {
  display: block;
  -webkit-animation-name: sbx-reset-in;
          animation-name: sbx-reset-in;
  -webkit-animation-duration: 0.15s;
          animation-duration: 0.15s;
}

@-webkit-keyframes sbx-reset-in {
  0% {
    -webkit-transform: translate3d(-20%, 0, 0);
            transform: translate3d(-20%, 0, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: none;
            transform: none;
    opacity: 1;
  }
}

@keyframes sbx-reset-in {
  0% {
    -webkit-transform: translate3d(-20%, 0, 0);
            transform: translate3d(-20%, 0, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: none;
            transform: none;
    opacity: 1;
  }
}

.algolia-autocomplete.algolia-autocomplete-right .ds-dropdown-menu {
  right: 0 !important;
  left: inherit !important;
}

.algolia-autocomplete.algolia-autocomplete-right .ds-dropdown-menu:before {
  right: 48px;
}

.algolia-autocomplete.algolia-autocomplete-left .ds-dropdown-menu {
  left: 0 !important;
  right: inherit !important;
}

.algolia-autocomplete.algolia-autocomplete-left .ds-dropdown-menu:before {
  left: 48px;
}

.algolia-autocomplete .ds-dropdown-menu {
  position: relative;
  top: -6px;
  border-radius: 4px;
  margin: 6px 0 0;
  padding: 0;
  text-align: left;
  height: auto;
  position: relative;
  background: transparent;
  border: none;
  z-index: 999;
  max-width: 600px;
  min-width: 500px;
  -webkit-box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.2), 0 2px 3px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.2), 0 2px 3px 0 rgba(0, 0, 0, 0.1);
}

.algolia-autocomplete .ds-dropdown-menu:before {
  display: block;
  position: absolute;
  content: '';
  width: 14px;
  height: 14px;
  background: #fff;
  z-index: 1000;
  top: -7px;
  border-top: 1px solid #d9d9d9;
  border-right: 1px solid #d9d9d9;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  border-radius: 2px;
}

.algolia-autocomplete .ds-dropdown-menu .ds-suggestions {
  position: relative;
  z-index: 1000;
  margin-top: 8px;
}

.algolia-autocomplete .ds-dropdown-menu .ds-suggestions a:hover {
  text-decoration: none;
}

.algolia-autocomplete .ds-dropdown-menu .ds-suggestion {
  cursor: pointer;
}

.algolia-autocomplete .ds-dropdown-menu .ds-suggestion.ds-cursor .algolia-docsearch-suggestion.suggestion-layout-simple {
  background-color: rgba(69, 142, 225, 0.05);
}

.algolia-autocomplete .ds-dropdown-menu .ds-suggestion.ds-cursor .algolia-docsearch-suggestion:not(.suggestion-layout-simple) .algolia-docsearch-suggestion--content {
  background-color: rgba(69, 142, 225, 0.05);
}

.algolia-autocomplete .ds-dropdown-menu [class^='ds-dataset-'] {
  position: relative;
  border: solid 1px #d9d9d9;
  background: #fff;
  border-radius: 4px;
  overflow: auto;
  padding: 0 8px 8px;
}

.algolia-autocomplete .ds-dropdown-menu * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.algolia-autocomplete .algolia-docsearch-suggestion {
  display: block;
  position: relative;
  padding: 0 8px;
  background: #fff;
  color: #02060c;
  overflow: hidden;
}

.algolia-autocomplete .algolia-docsearch-suggestion--highlight {
  color: #174d8c;
  background: rgba(143, 187, 237, 0.1);
  padding: 0.1em 0.05em;
}

.algolia-autocomplete .algolia-docsearch-suggestion--category-header .algolia-docsearch-suggestion--category-header-lvl0
.algolia-docsearch-suggestion--highlight,
.algolia-autocomplete .algolia-docsearch-suggestion--category-header .algolia-docsearch-suggestion--category-header-lvl1
.algolia-docsearch-suggestion--highlight {
  padding: 0 0 1px;
  background: inherit;
  -webkit-box-shadow: inset 0 -2px 0 0 rgba(69, 142, 225, 0.8);
          box-shadow: inset 0 -2px 0 0 rgba(69, 142, 225, 0.8);
  color: inherit;
}

.algolia-autocomplete .algolia-docsearch-suggestion--text .algolia-docsearch-suggestion--highlight {
  padding: 0 0 1px;
  background: inherit;
  -webkit-box-shadow: inset 0 -2px 0 0 rgba(69, 142, 225, 0.8);
          box-shadow: inset 0 -2px 0 0 rgba(69, 142, 225, 0.8);
  color: inherit;
}

.algolia-autocomplete .algolia-docsearch-suggestion--content {
  display: block;
  float: right;
  width: 70%;
  position: relative;
  padding: 5.33333px 0 5.33333px 10.66667px;
  cursor: pointer;
}

.algolia-autocomplete .algolia-docsearch-suggestion--content:before {
  content: '';
  position: absolute;
  display: block;
  top: 0;
  height: 100%;
  width: 1px;
  background: #ddd;
  left: -1px;
}

.algolia-autocomplete .algolia-docsearch-suggestion--category-header {
  position: relative;
  border-bottom: 1px solid #ddd;
  display: none;
  margin-top: 8px;
  padding: 4px 0;
  font-size: 1em;
  color: #33363d;
}

.algolia-autocomplete .algolia-docsearch-suggestion--wrapper {
  width: 100%;
  float: left;
  padding: 8px 0 0 0;
}

.algolia-autocomplete .algolia-docsearch-suggestion--subcategory-column {
  float: left;
  width: 30%;
  padding-left: 0;
  text-align: right;
  position: relative;
  padding: 5.33333px 10.66667px;
  color: #a4a7ae;
  font-size: 0.9em;
  word-wrap: break-word;
}

.algolia-autocomplete .algolia-docsearch-suggestion--subcategory-column:before {
  content: '';
  position: absolute;
  display: block;
  top: 0;
  height: 100%;
  width: 1px;
  background: #ddd;
  right: 0;
}

.algolia-autocomplete .algolia-docsearch-suggestion--subcategory-inline {
  display: none;
}

.algolia-autocomplete .algolia-docsearch-suggestion--title {
  margin-bottom: 4px;
  color: #02060c;
  font-size: 0.9em;
  font-weight: bold;
}

.algolia-autocomplete .algolia-docsearch-suggestion--text {
  display: block;
  line-height: 1.2em;
  font-size: 0.85em;
  color: #63676d;
}

.algolia-autocomplete .algolia-docsearch-suggestion--no-results {
  width: 100%;
  padding: 8px 0;
  text-align: center;
  font-size: 1.2em;
}

.algolia-autocomplete .algolia-docsearch-suggestion--no-results::before {
  display: none;
}

.algolia-autocomplete .algolia-docsearch-suggestion code {
  padding: 1px 5px;
  font-size: 90%;
  border: none;
  color: #222222;
  background-color: #ebebeb;
  border-radius: 3px;
  font-family: Menlo, Monaco, Consolas, 'Courier New', monospace;
}

.algolia-autocomplete .algolia-docsearch-suggestion code .algolia-docsearch-suggestion--highlight {
  background: none;
}

.algolia-autocomplete .algolia-docsearch-suggestion.algolia-docsearch-suggestion__main .algolia-docsearch-suggestion--category-header {
  display: block;
}

.algolia-autocomplete .algolia-docsearch-suggestion.algolia-docsearch-suggestion__secondary {
  display: block;
}

@media all and (min-width: 768px) {
  .algolia-autocomplete .algolia-docsearch-suggestion .algolia-docsearch-suggestion--subcategory-column {
    display: block;
  }
}

@media all and (max-width: 768px) {
  .algolia-autocomplete .algolia-docsearch-suggestion .algolia-docsearch-suggestion--subcategory-column {
    display: inline-block;
    width: auto;
    text-align: left;
    float: left;
    padding: 0;
    color: #02060c;
    font-size: 0.9em;
    font-weight: bold;
    text-align: left;
    opacity: 0.5;
  }
  .algolia-autocomplete .algolia-docsearch-suggestion .algolia-docsearch-suggestion--subcategory-column:before {
    display: none;
  }
  .algolia-autocomplete .algolia-docsearch-suggestion .algolia-docsearch-suggestion--subcategory-column:after {
    content: '|';
  }
  .algolia-autocomplete .algolia-docsearch-suggestion .algolia-docsearch-suggestion--content {
    display: inline-block;
    width: auto;
    text-align: left;
    float: left;
    padding: 0;
  }
  .algolia-autocomplete .algolia-docsearch-suggestion .algolia-docsearch-suggestion--content:before {
    display: none;
  }
}

.algolia-autocomplete .suggestion-layout-simple.algolia-docsearch-suggestion {
  border-bottom: solid 1px #eee;
  padding: 8px;
  margin: 0;
}

.algolia-autocomplete .suggestion-layout-simple .algolia-docsearch-suggestion--content {
  width: 100%;
  padding: 0;
}

.algolia-autocomplete .suggestion-layout-simple .algolia-docsearch-suggestion--content::before {
  display: none;
}

.algolia-autocomplete .suggestion-layout-simple .algolia-docsearch-suggestion--category-header {
  margin: 0;
  padding: 0;
  display: block;
  width: 100%;
  border: none;
}

.algolia-autocomplete .suggestion-layout-simple .algolia-docsearch-suggestion--category-header-lvl0 {
  opacity: 0.6;
  font-size: 0.85em;
}

.algolia-autocomplete .suggestion-layout-simple .algolia-docsearch-suggestion--category-header-lvl1 {
  opacity: 0.6;
  font-size: 0.85em;
}

.algolia-autocomplete .suggestion-layout-simple .algolia-docsearch-suggestion--category-header-lvl1::before {
  background-image: url('data:image/svg+xml;utf8,<svg width="10" height="10" viewBox="0 0 20 38" xmlns="http://www.w3.org/2000/svg"><path d="M1.49 4.31l14 16.126.002-2.624-14 16.074-1.314 1.51 3.017 2.626 1.313-1.508 14-16.075 1.142-1.313-1.14-1.313-14-16.125L3.2.18.18 2.8l1.31 1.51z" fill-rule="evenodd" fill="%231D3657" /></svg>');
  content: '';
  width: 10px;
  height: 10px;
  display: inline-block;
}

.algolia-autocomplete .suggestion-layout-simple .algolia-docsearch-suggestion--wrapper {
  width: 100%;
  float: left;
  margin: 0;
  padding: 0;
}

.algolia-autocomplete .suggestion-layout-simple .algolia-docsearch-suggestion--duplicate-content, .algolia-autocomplete .suggestion-layout-simple .algolia-docsearch-suggestion--subcategory-inline {
  display: none !important;
}

.algolia-autocomplete .suggestion-layout-simple .algolia-docsearch-suggestion--title {
  margin: 0;
  color: #458ee1;
  font-size: 0.9em;
  font-weight: normal;
}

.algolia-autocomplete .suggestion-layout-simple .algolia-docsearch-suggestion--title::before {
  content: '#';
  font-weight: bold;
  color: #458ee1;
  display: inline-block;
}

.algolia-autocomplete .suggestion-layout-simple .algolia-docsearch-suggestion--text {
  margin: 4px 0 0;
  display: block;
  line-height: 1.4em;
  padding: 5.33333px 8px;
  background: #f8f8f8;
  font-size: 0.85em;
  opacity: 0.8;
}

.algolia-autocomplete .suggestion-layout-simple .algolia-docsearch-suggestion--text .algolia-docsearch-suggestion--highlight {
  color: #3f4145;
  font-weight: bold;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.algolia-autocomplete .algolia-docsearch-footer {
  width: 134px;
  height: 20px;
  z-index: 2000;
  margin-top: 10.66667px;
  float: right;
  font-size: 0;
  line-height: 0;
}

.algolia-autocomplete .algolia-docsearch-footer--logo {
  background-image: url("data:image/svg+xml,%3Csvg width='168' height='24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M78.988.938h16.594a2.968 2.968 0 0 1 2.966 2.966V20.5a2.967 2.967 0 0 1-2.966 2.964H78.988a2.967 2.967 0 0 1-2.966-2.964V3.897A2.961 2.961 0 0 1 78.988.938zm41.937 17.866c-4.386.02-4.386-3.54-4.386-4.106l-.007-13.336 2.675-.424v13.254c0 .322 0 2.358 1.718 2.364v2.248zm-10.846-2.18c.821 0 1.43-.047 1.855-.129v-2.719a6.334 6.334 0 0 0-1.574-.199c-.295 0-.596.021-.897.069a2.699 2.699 0 0 0-.814.24c-.24.116-.439.28-.582.491-.15.212-.219.335-.219.656 0 .628.219.991.616 1.23s.938.362 1.615.362zm-.233-9.7c.883 0 1.629.109 2.231.328.602.218 1.088.525 1.444.915.363.396.609.922.76 1.483.157.56.232 1.175.232 1.85v6.874c-.41.089-1.034.19-1.868.314-.834.123-1.772.185-2.813.185-.69 0-1.327-.069-1.895-.198a4.001 4.001 0 0 1-1.471-.636 3.085 3.085 0 0 1-.951-1.134c-.226-.465-.343-1.12-.343-1.803 0-.656.13-1.073.384-1.525.26-.45.608-.819 1.047-1.106.445-.287.95-.492 1.532-.615a8.8 8.8 0 0 1 1.82-.185 8.404 8.404 0 0 1 1.972.24v-.438c0-.307-.035-.6-.11-.874a1.88 1.88 0 0 0-.384-.73 1.784 1.784 0 0 0-.724-.493 3.164 3.164 0 0 0-1.143-.205c-.616 0-1.177.075-1.69.164a7.735 7.735 0 0 0-1.26.307l-.321-2.192c.335-.117.834-.233 1.478-.349a10.98 10.98 0 0 1 2.073-.178zm52.842 9.626c.822 0 1.43-.048 1.854-.13V13.7a6.347 6.347 0 0 0-1.574-.199c-.294 0-.595.021-.896.069a2.7 2.7 0 0 0-.814.24 1.46 1.46 0 0 0-.582.491c-.15.212-.218.335-.218.656 0 .628.218.991.615 1.23.404.245.938.362 1.615.362zm-.226-9.694c.883 0 1.629.108 2.231.327.602.219 1.088.526 1.444.915.355.39.609.923.759 1.483.158.56.233 1.175.233 1.852v6.873c-.41.088-1.034.19-1.868.314-.834.123-1.772.184-2.813.184-.69 0-1.327-.068-1.895-.198a4.001 4.001 0 0 1-1.471-.635 3.085 3.085 0 0 1-.951-1.134c-.226-.465-.343-1.12-.343-1.804 0-.656.13-1.073.384-1.524.26-.45.608-.82 1.047-1.107.445-.286.95-.491 1.532-.614a8.803 8.803 0 0 1 2.751-.13c.329.034.671.096 1.04.185v-.437a3.3 3.3 0 0 0-.109-.875 1.873 1.873 0 0 0-.384-.731 1.784 1.784 0 0 0-.724-.492 3.165 3.165 0 0 0-1.143-.205c-.616 0-1.177.075-1.69.164-.514.089-.938.191-1.26.307l-.321-2.193c.335-.116.834-.232 1.478-.348a11.633 11.633 0 0 1 2.073-.177zm-8.034-1.271a1.626 1.626 0 0 1-1.628-1.62c0-.895.725-1.62 1.628-1.62.904 0 1.63.725 1.63 1.62 0 .895-.733 1.62-1.63 1.62zm1.348 13.22h-2.689V7.27l2.69-.423v11.956zm-4.714 0c-4.386.02-4.386-3.54-4.386-4.107l-.008-13.336 2.676-.424v13.254c0 .322 0 2.358 1.718 2.364v2.248zm-8.698-5.903c0-1.156-.253-2.119-.746-2.788-.493-.677-1.183-1.01-2.067-1.01-.882 0-1.574.333-2.065 1.01-.493.676-.733 1.632-.733 2.788 0 1.168.246 1.953.74 2.63.492.683 1.183 1.018 2.066 1.018.882 0 1.574-.342 2.067-1.019.492-.683.738-1.46.738-2.63zm2.737-.007c0 .902-.13 1.584-.397 2.33a5.52 5.52 0 0 1-1.128 1.906 4.986 4.986 0 0 1-1.752 1.223c-.685.286-1.739.45-2.265.45-.528-.006-1.574-.157-2.252-.45a5.096 5.096 0 0 1-1.744-1.223c-.487-.527-.863-1.162-1.137-1.906a6.345 6.345 0 0 1-.41-2.33c0-.902.123-1.77.397-2.508a5.554 5.554 0 0 1 1.15-1.892 5.133 5.133 0 0 1 1.75-1.216c.679-.287 1.425-.423 2.232-.423.808 0 1.553.142 2.237.423.685.286 1.274.69 1.753 1.216a5.644 5.644 0 0 1 1.135 1.892c.287.738.431 1.606.431 2.508zm-20.138 0c0 1.12.246 2.363.738 2.882.493.52 1.13.78 1.91.78.424 0 .828-.062 1.204-.178.377-.116.677-.253.917-.417V9.33a10.476 10.476 0 0 0-1.766-.226c-.971-.028-1.71.37-2.23 1.004-.513.636-.773 1.75-.773 2.788zm7.438 5.274c0 1.824-.466 3.156-1.404 4.004-.936.846-2.367 1.27-4.296 1.27-.705 0-2.17-.137-3.34-.396l.431-2.118c.98.205 2.272.26 2.95.26 1.074 0 1.84-.219 2.299-.656.459-.437.684-1.086.684-1.948v-.437a8.07 8.07 0 0 1-1.047.397c-.43.13-.93.198-1.492.198-.739 0-1.41-.116-2.018-.349a4.206 4.206 0 0 1-1.567-1.025c-.431-.45-.774-1.017-1.013-1.694-.24-.677-.363-1.885-.363-2.773 0-.834.13-1.88.384-2.577.26-.696.629-1.298 1.129-1.796.493-.498 1.095-.881 1.8-1.162a6.605 6.605 0 0 1 2.428-.457c.87 0 1.67.109 2.45.24.78.129 1.444.265 1.985.415V18.17z' fill='%235468FF'/%3E%3Cpath d='M6.972 6.677v1.627c-.712-.446-1.52-.67-2.425-.67-.585 0-1.045.13-1.38.391a1.24 1.24 0 0 0-.502 1.03c0 .425.164.765.494 1.02.33.256.835.532 1.516.83.447.192.795.356 1.045.495.25.138.537.332.862.582.324.25.563.548.718.894.154.345.23.741.23 1.188 0 .947-.334 1.691-1.004 2.234-.67.542-1.537.814-2.601.814-1.18 0-2.16-.229-2.936-.686v-1.708c.84.628 1.814.942 2.92.942.585 0 1.048-.136 1.388-.407.34-.271.51-.646.51-1.125 0-.287-.1-.55-.302-.79-.203-.24-.42-.42-.655-.542-.234-.123-.585-.29-1.053-.503-.276-.127-.47-.218-.582-.271a13.67 13.67 0 0 1-.55-.287 4.275 4.275 0 0 1-.567-.351 6.92 6.92 0 0 1-.455-.4c-.18-.17-.31-.34-.39-.51-.08-.17-.155-.37-.224-.598a2.553 2.553 0 0 1-.104-.742c0-.915.333-1.638.998-2.17.664-.532 1.523-.798 2.576-.798.968 0 1.793.17 2.473.51zm7.468 5.696v-.287c-.022-.607-.187-1.088-.495-1.444-.309-.357-.75-.535-1.324-.535-.532 0-.99.194-1.373.583-.382.388-.622.949-.717 1.683h3.909zm1.005 2.792v1.404c-.596.34-1.383.51-2.362.51-1.255 0-2.255-.377-3-1.132-.744-.755-1.116-1.744-1.116-2.968 0-1.297.34-2.316 1.021-3.055.68-.74 1.548-1.11 2.6-1.11 1.033 0 1.852.323 2.458.966.606.644.91 1.572.91 2.784 0 .33-.033.676-.096 1.038h-5.314c.107.702.405 1.239.894 1.611.49.372 1.106.558 1.85.558.862 0 1.58-.202 2.155-.606zm6.605-1.77h-1.212c-.596 0-1.045.116-1.349.35-.303.234-.454.532-.454.894 0 .372.117.664.35.877.235.213.575.32 1.022.32.51 0 .912-.142 1.204-.424.293-.281.44-.651.44-1.108v-.91zm-4.068-2.554V9.325c.627-.361 1.457-.542 2.489-.542 2.116 0 3.175 1.026 3.175 3.08V17h-1.548v-.957c-.415.68-1.143 1.02-2.186 1.02-.766 0-1.38-.22-1.843-.661-.462-.442-.694-1.003-.694-1.684 0-.776.293-1.38.878-1.81.585-.431 1.404-.647 2.457-.647h1.34V11.8c0-.554-.133-.971-.399-1.253-.266-.282-.707-.423-1.324-.423a4.07 4.07 0 0 0-2.345.718zm9.333-1.93v1.42c.394-1 1.101-1.5 2.123-1.5.148 0 .313.016.494.048v1.531a1.885 1.885 0 0 0-.75-.143c-.542 0-.989.24-1.34.718-.351.479-.527 1.048-.527 1.707V17h-1.563V8.91h1.563zm5.01 4.084c.022.82.272 1.492.75 2.019.479.526 1.15.79 2.01.79.639 0 1.235-.176 1.788-.527v1.404c-.521.319-1.186.479-1.995.479-1.265 0-2.276-.4-3.031-1.197-.755-.798-1.133-1.792-1.133-2.984 0-1.16.38-2.151 1.14-2.975.761-.825 1.79-1.237 3.088-1.237.702 0 1.346.149 1.93.447v1.436a3.242 3.242 0 0 0-1.77-.495c-.84 0-1.513.266-2.019.798-.505.532-.758 1.213-.758 2.042zM40.24 5.72v4.579c.458-1 1.293-1.5 2.505-1.5.787 0 1.42.245 1.899.734.479.49.718 1.17.718 2.042V17h-1.564v-5.106c0-.553-.14-.98-.422-1.284-.282-.303-.652-.455-1.11-.455-.531 0-1.002.202-1.411.606-.41.405-.615 1.022-.615 1.851V17h-1.563V5.72h1.563zm14.966 10.02c.596 0 1.096-.253 1.5-.758.404-.506.606-1.157.606-1.955 0-.915-.202-1.62-.606-2.114-.404-.495-.92-.742-1.548-.742-.553 0-1.05.224-1.491.67-.442.447-.662 1.133-.662 2.058 0 .958.212 1.67.638 2.138.425.469.946.703 1.563.703zM53.004 5.72v4.42c.574-.894 1.388-1.341 2.44-1.341 1.022 0 1.857.383 2.506 1.149.649.766.973 1.781.973 3.047 0 1.138-.309 2.109-.925 2.912-.617.803-1.463 1.205-2.537 1.205-1.075 0-1.894-.447-2.457-1.34V17h-1.58V5.72h1.58zm9.908 11.104l-3.223-7.913h1.739l1.005 2.632 1.26 3.415c.096-.32.48-1.458 1.15-3.415l.909-2.632h1.66l-2.92 7.866c-.777 2.074-1.963 3.11-3.559 3.11a2.92 2.92 0 0 1-.734-.079v-1.34c.17.042.351.064.543.064 1.032 0 1.755-.57 2.17-1.708z' fill='%235D6494'/%3E%3Cpath d='M89.632 5.967v-.772a.978.978 0 0 0-.978-.977h-2.28a.978.978 0 0 0-.978.977v.793c0 .088.082.15.171.13a7.127 7.127 0 0 1 1.984-.28c.65 0 1.295.088 1.917.259.082.02.164-.04.164-.13m-6.248 1.01l-.39-.389a.977.977 0 0 0-1.382 0l-.465.465a.973.973 0 0 0 0 1.38l.383.383c.062.061.15.047.205-.014.226-.307.472-.601.746-.874.281-.28.568-.526.883-.751.068-.042.075-.137.02-.2m4.16 2.453v3.341c0 .096.104.165.192.117l2.97-1.537c.068-.034.089-.117.055-.184a3.695 3.695 0 0 0-3.08-1.866c-.068 0-.136.054-.136.13m0 8.048a4.489 4.489 0 0 1-4.49-4.482 4.488 4.488 0 0 1 4.49-4.482 4.488 4.488 0 0 1 4.489 4.482 4.484 4.484 0 0 1-4.49 4.482m0-10.85a6.363 6.363 0 1 0 0 12.729c3.518 0 6.372-2.85 6.372-6.368a6.358 6.358 0 0 0-6.371-6.36' fill='%23FFF'/%3E%3C/g%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  overflow: hidden;
  text-indent: -9000px;
  padding: 0 !important;
  width: 100%;
  height: 100%;
  display: block;
}
.rc-footer {
  position: relative;
  clear: both;
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
  line-height: 1.5;
  background-color: #000;
}
.rc-footer a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: all 0.3s;
}
.rc-footer a:hover {
  color: #40a9ff;
}
.rc-footer-container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 80px 0 20px;
}
.rc-footer-columns {
  display: flex;
  justify-content: space-around;
}
.rc-footer-column {
  margin-bottom: 60px;
}
.rc-footer-column h2 {
  position: relative;
  margin: 0 auto;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
}
.rc-footer-column-icon {
  position: relative;
  top: -1px;
  display: inline-block;
  width: 22px;
  text-align: center;
  vertical-align: middle;
  margin-inline-end: 0.5em;
}
.rc-footer-column-icon > span,
.rc-footer-column-icon > svg,
.rc-footer-column-icon img {
  display: block;
  width: 100%;
}
.rc-footer-item {
  margin: 12px 0;
}
.rc-footer-item-icon {
  position: relative;
  top: -1px;
  display: inline-block;
  width: 16px;
  text-align: center;
  vertical-align: middle;
  margin-inline-end: 0.4em;
}
.rc-footer-item-icon > span,
.rc-footer-item-icon > svg,
.rc-footer-item-icon img {
  display: block;
  width: 100%;
}
.rc-footer-item-separator {
  margin: 0 0.3em;
}
.rc-footer-bottom-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 0;
  font-size: 16px;
  line-height: 32px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}
.rc-footer-light {
  color: rgba(0, 0, 0, 0.85);
  background-color: transparent;
}
.rc-footer-light h2,
.rc-footer-light a {
  color: rgba(0, 0, 0, 0.85);
}
.rc-footer-light .rc-footer-bottom-container {
  border-top-color: #e8e8e8;
}
.rc-footer-light .rc-footer-item-separator,
.rc-footer-light .rc-footer-item-description {
  color: rgba(0, 0, 0, 0.45);
}
@media only screen and (max-width: 767.99px) {
  .rc-footer {
    text-align: center;
  }
  .rc-footer-container {
    padding: 40px 0;
  }
  .rc-footer-columns {
    display: block;
  }
  .rc-footer-column {
    display: block;
    margin-bottom: 40px;
  }
  .rc-footer-column:last-child {
    margin-bottom: 0;
  }
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td,
hr,
button,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  margin: 0;
  padding: 0;
}
ul,
ol {
  list-style: none;
}
/* 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 */
body {
  color: #313140;
  font-size: 14px;
  font-family: 'Noto Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: #fff;
  -webkit-transition: background 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: background 1s cubic-bezier(0.075, 0.82, 0.165, 1);
}
a {
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.main-wrapper {
  position: relative;
  padding: 40px 0 0;
  background: #fff;
}
.main-container {
  position: relative;
  min-height: 500px;
  padding: 0 170px 32px 64px;
  background: #fff;
}
.ant-row-rtl .main-container {
  padding: 0 64px 144px 170px;
}
.main-menu {
  z-index: 1;
}
.main-menu-inner {
  height: 100%;
  max-height: 100vh;
  overflow: hidden;
}
.main-menu:hover .main-menu-inner {
  overflow-y: auto;
}
.main-menu > div,
.main-menu > div > div {
  height: 100%;
}
.aside-container {
  min-height: 100%;
  padding-bottom: 48px;
  font-family: Avenir, 'Noto Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, sans-serif;
}
.aside-container.ant-menu-inline .ant-menu-submenu-title h4,
.aside-container.ant-menu-inline > .ant-menu-item,
.aside-container.ant-menu-inline .ant-menu-item a {
  overflow: hidden;
  font-size: 14px;
  text-overflow: ellipsis;
}
.aside-container.ant-menu-inline > .ant-menu-item-group > .ant-menu-item-group-title {
  margin-top: 16px;
  margin-bottom: 16px;
  font-size: 13px;
}
.aside-container.ant-menu-inline > .ant-menu-item-group > .ant-menu-item-group-title::after {
  position: relative;
  top: 12px;
  display: block;
  width: calc(100% - 20px);
  height: 1px;
  background: #f0f0f0;
  content: '';
}
.aside-container.ant-menu-inline > .ant-menu-item,
.aside-container.ant-menu-inline > .ant-menu-submenu > .ant-menu-submenu-title,
.aside-container.ant-menu-inline > .ant-menu-item-group > .ant-menu-item-group-title,
.aside-container.ant-menu-inline > .ant-menu-item-group > .ant-menu-item-group-list > .ant-menu-item,
.aside-container.ant-menu-inline.ant-menu-inline > .ant-menu-item-group > .ant-menu-item-group-list > .ant-menu-item {
  padding-left: 40px !important;
}
.ant-row-rtl .aside-container.ant-menu-inline > .ant-menu-item,
.ant-row-rtl .aside-container.ant-menu-inline > .ant-menu-submenu > .ant-menu-submenu-title,
.ant-row-rtl .aside-container.ant-menu-inline > .ant-menu-item-group > .ant-menu-item-group-title,
.ant-row-rtl .aside-container.ant-menu-inline > .ant-menu-item-group > .ant-menu-item-group-list > .ant-menu-item,
.ant-row-rtl .aside-container.ant-menu-inline.ant-menu-inline > .ant-menu-item-group > .ant-menu-item-group-list > .ant-menu-item {
  padding-right: 40px !important;
  padding-left: 16px !important;
}
.aside-container.ant-menu-inline.ant-menu-inline .ant-menu-item-group-title {
  padding-left: 56px;
}
.ant-row-rtl .aside-container.ant-menu-inline.ant-menu-inline .ant-menu-item-group-title {
  padding-right: 56px;
  padding-left: 16px;
}
.aside-container.ant-menu-inline.ant-menu-inline .ant-menu-item-group-list > .ant-menu-item {
  padding-left: 80px !important;
}
.ant-row-rtl .aside-container.ant-menu-inline.ant-menu-inline .ant-menu-item-group-list > .ant-menu-item {
  padding-right: 80px !important;
  padding-left: 16px !important;
}
.aside-container.ant-menu-inline .ant-menu-item-group:first-child .ant-menu-item-group-title {
  margin-top: 0;
}
.aside-container a[disabled] {
  color: #ccc;
}
.aside-container .menu-item-link-outside {
  position: relative;
}
.aside-container .menu-item-link-outside .anticon {
  position: absolute;
  top: 16px;
  right: -10px;
  color: #515164;
  font-size: 12px;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.aside-container .menu-item-link-outside:hover .anticon {
  opacity: 1;
}
.aside-container .chinese {
  margin-left: 6px;
  font-weight: normal;
  font-size: 12px;
  opacity: 0.67;
}
.outside-link {
  display: inline-block;
}
.outside-link-icon {
  margin-left: 5px;
  color: #aaa;
  font-size: 12px;
}
.menu-site .ant-menu-item > a {
  color: #313140;
}
.menu-site .ant-menu-item-selected > a,
.menu-site .ant-menu-item > a:hover {
  color: #515164;
}
#react-content {
  height: 100%;
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
  transition: -webkit-transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
  transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
  transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86), -webkit-transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
}
.page-wrapper {
  width: 100%;
  padding: 0;
  overflow: hidden;
}
.page-wrapper-rtl {
  direction: rtl;
}
.drawer-content {
  padding: 40px 0;
}
.drawer-content-wrapper {
  background-color: #fff;
}
.drawer {
  z-index: 1029;
}
.fixed-widgets {
  position: fixed;
  right: 32px;
  bottom: 102px;
  z-index: 2147483640;
  cursor: pointer;
}
.fixed-widgets-tooltip .ant-tooltip-inner {
  min-width: 100px;
}
.fixed-widgets > div {
  display: block;
}
.fixed-widgets .fixed-widgets-avatar {
  background-color: #fff;
  -webkit-box-shadow: 0px 5px 25px rgba(0, 40, 117, 0.1);
          box-shadow: 0px 5px 25px rgba(0, 40, 117, 0.1);
}
#header.home-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  max-width: 1280px;
  margin-right: auto;
  margin-left: auto;
  background: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}
#header.home-header #logo {
  padding-right: 16px;
  padding-left: 40px;
}
.page-wrapper-rtl #header.home-header #logo {
  padding-right: 40px;
  padding-left: 16px;
}
#header.home-header .ant-menu {
  background: transparent;
}
@media (max-width: 576px) {
  #header.home-header .ant-row .ant-col {
    margin: 0 auto;
  }
  #header.home-header .ant-row .ant-col a {
    padding-right: 0;
    padding-left: 0;
  }
  #header.home-header .ant-row .ant-col:last-child {
    display: none;
  }
}
.rc-footer {
  z-index: 11;
}
.rc-footer-container {
  max-width: unset;
  padding: 60px;
}
.rc-footer-bottom-container {
  max-width: calc(100% - 120px);
}
.rc-footer-columns {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.page-wrapper-rtl .rc-footer-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  text-align: right;
}
.page-wrapper-rtl .rc-footer-item-icon {
  margin-right: 0;
  margin-left: 0.4em;
}
.prev-next-nav {
  margin-right: 64px;
  margin-left: 64px;
  overflow: hidden;
  font-size: 14px;
  border-top: 1px solid #f0f0f0;
}
.prev-next-nav > .prev-page,
.prev-next-nav > .next-page {
  float: left;
  width: 50%;
  height: 72px;
  line-height: 72px;
  text-decoration: none;
}
.ant-row-rtl .prev-next-nav > .prev-page,
.ant-row-rtl .prev-next-nav > .next-page {
  float: right;
}
.ant-row-rtl .prev-next-nav > .prev-page .footer-nav-icon-before,
.ant-row-rtl .prev-next-nav > .next-page .footer-nav-icon-before,
.ant-row-rtl .prev-next-nav > .prev-page .footer-nav-icon-after,
.ant-row-rtl .prev-next-nav > .next-page .footer-nav-icon-after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.prev-next-nav > a.prev-page .footer-nav-icon-before {
  position: relative;
  left: 0;
  margin-right: 1em;
  color: rgba(0, 0, 0, 0.45);
  font-size: 12px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.ant-row-rtl .prev-next-nav > a.prev-page .footer-nav-icon-before {
  right: 0;
  left: auto;
  margin-right: 0;
  margin-left: 1em;
}
.prev-next-nav > a.prev-page .footer-nav-icon-after {
  display: none;
}
.prev-next-nav > a.prev-page:hover .footer-nav-icon-before {
  left: -3px;
  color: #515164;
}
.ant-row-rtl .prev-next-nav > a.prev-page:hover .footer-nav-icon-before {
  right: -3px;
  left: auto;
}
.prev-next-nav > .next-page {
  float: right;
  text-align: right;
}
.ant-row-rtl .prev-next-nav > .next-page {
  float: left;
  text-align: left;
}
.prev-next-nav > .next-page .footer-nav-icon-after {
  position: relative;
  right: 0;
  margin-left: 1em;
  color: rgba(0, 0, 0, 0.45);
  font-size: 12px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.ant-row-rtl .prev-next-nav > .next-page .footer-nav-icon-after {
  right: auto;
  left: 0;
  margin-right: 1em;
  margin-left: 0;
}
.prev-next-nav > .next-page .footer-nav-icon-before {
  display: none;
}
.prev-next-nav > .next-page:hover .footer-nav-icon-after {
  right: -3px;
  color: #515164;
}
.ant-row-rtl .prev-next-nav > .next-page:hover .footer-nav-icon-after {
  right: auto;
  left: -3px;
}
.prev-next-nav .chinese {
  margin-left: 0.5em;
}
.markdown {
  color: #313140;
  font-size: 14px;
  line-height: 2;
}
.highlight {
  line-height: 1.5;
}
.markdown img {
  max-width: calc(100% - 32px);
}
.markdown p > img {
  margin: 34px 0;
  -webkit-box-shadow: 0 8px 20px rgba(143, 168, 191, 0.35);
          box-shadow: 0 8px 20px rgba(143, 168, 191, 0.35);
}
.markdown p > img.markdown-inline-image {
  margin: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.markdown h1 {
  margin-top: 8px;
  margin-bottom: 20px;
  color: #313140;
  font-weight: 500;
  font-size: 30px;
  font-family: Avenir, 'Noto Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, sans-serif;
  line-height: 38px;
}
.markdown h1 .subtitle {
  margin-left: 12px;
}
.ant-row-rtl .markdown h1 .subtitle {
  margin-right: 12px;
  margin-left: 0;
}
.markdown h2 {
  font-size: 24px;
  line-height: 32px;
}
.markdown h2,
.markdown h3,
.markdown h4,
.markdown h5,
.markdown h6 {
  clear: both;
  margin: 1.6em 0 0.6em;
  color: #313140;
  font-weight: 500;
  font-family: Avenir, 'Noto Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, sans-serif;
}
.markdown h3 {
  font-size: 18px;
}
.markdown h4 {
  font-size: 16px;
}
.markdown h5 {
  font-size: 14px;
}
.markdown h6 {
  font-size: 12px;
}
.markdown hr {
  clear: both;
  height: 1px;
  margin: 56px 0;
  background: #f0f0f0;
  border: 0;
}
.markdown p,
.markdown pre {
  margin: 1em 0;
}
.markdown ul > li {
  margin-left: 20px;
  padding-left: 4px;
  list-style-type: circle;
}
.ant-row-rtl .markdown ul > li {
  margin-right: 20px;
  margin-left: 0;
  padding-right: 4px;
  padding-left: 0;
}
.markdown ul > li:empty {
  display: none;
}
.markdown ol > li {
  margin-left: 20px;
  padding-left: 4px;
  list-style-type: decimal;
}
.ant-row-rtl .markdown ol > li {
  margin-right: 20px;
  margin-left: 0;
  padding-right: 4px;
  padding-left: 0;
}
.markdown ul > li > p,
.markdown ol > li > p {
  margin: 0.2em 0;
}
.markdown code {
  margin: 0 1px;
  padding: 0.2em 0.4em;
  font-size: 0.9em;
  background: #f2f4f5;
  border: 1px solid #f0f0f0;
  border-radius: 3px;
}
.markdown pre {
  font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, Courier, monospace;
  background: #f2f4f5;
  border-radius: 8px;
}
.markdown pre code {
  margin: 0;
  padding: 0;
  overflow: auto;
  color: #313140;
  font-size: 13px;
  background: #f5f5f5;
  border: none;
}
.markdown strong,
.markdown b {
  font-weight: 500;
}
.markdown > table {
  width: 100%;
  margin: 8px 0 16px;
  empty-cells: show;
  border: 1px solid #f0f0f0;
  border-collapse: collapse;
  border-spacing: 0;
}
.markdown > table th {
  color: #5c6b77;
  font-weight: 500;
  white-space: nowrap;
  background: rgba(0, 0, 0, 0.02);
}
.markdown > table th,
.markdown > table td {
  padding: 16px 24px;
  text-align: left;
  border: 1px solid #f0f0f0;
}
.markdown blockquote {
  margin: 1em 0;
  padding-left: 0.8em;
  color: rgba(0, 0, 0, 0.45);
  font-size: 90%;
  border-left: 4px solid #f0f0f0;
}
.ant-row-rtl .markdown blockquote {
  padding-right: 0.8em;
  padding-left: 0;
  border-right: 4px solid #f0f0f0;
  border-left: none;
}
.markdown blockquote p {
  margin: 0;
}
.markdown .anchor {
  margin-left: 8px;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.ant-row-rtl .markdown .anchor {
  margin-right: 8px;
  margin-left: 0;
}
.markdown .waiting {
  color: #ccc;
  cursor: not-allowed;
}
.markdown a.edit-button {
  display: inline-block;
  margin-left: 8px;
  text-decoration: none;
}
.ant-row-rtl .markdown a.edit-button {
  margin-right: 8px;
  margin-left: 0;
}
.markdown a.edit-button i {
  color: rgba(0, 0, 0, 0.45);
}
.markdown a.edit-button i:hover {
  color: #515164;
}
.markdown a.edit-button .anticon {
  display: block;
  font-size: 16px;
}
.markdown h1:hover .anchor,
.markdown h2:hover .anchor,
.markdown h3:hover .anchor,
.markdown h4:hover .anchor,
.markdown h5:hover .anchor,
.markdown h6:hover .anchor {
  display: inline-block;
  opacity: 1;
}
.markdown > br,
.markdown > p > br {
  clear: both;
}
.markdown.api-container {
  overflow-x: auto;
}
.markdown.api-container table {
  min-width: 720px;
  margin: 2em 0;
  font-size: 13px;
  font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, Courier, monospace;
  line-height: 1.5715;
  border: 1px solid #f0f0f0;
}
.markdown.api-container table th,
.markdown.api-container table td {
  padding: 12px;
  border-color: #f0f0f0;
  border-width: 1px 0;
}
.markdown.api-container table th {
  padding-top: 14px;
  border-width: 0 0 2px 0;
}
.markdown.api-container table tbody tr {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.markdown.api-container table tbody tr:hover {
  background: rgba(60, 90, 100, 0.04);
}
.markdown.api-container table td:first-child {
  width: 20%;
  color: #595959;
  font-weight: 600;
}
.markdown.api-container table td:nth-child(3) {
  width: 22%;
  color: #c41d7f;
  font-size: 13px;
  word-break: break-all;
}
.markdown.api-container table td:nth-child(4) {
  width: 16%;
  font-size: 13px;
}
.markdown.api-container hr {
  margin: 12px 0;
}
.grid-demo .demo-row,
[id^='components-grid-demo-'] .demo-row,
.grid-demo .code-box-demo .demo-row,
[id^='components-grid-demo-'] .code-box-demo .demo-row {
  margin-bottom: 8px;
  overflow: hidden;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(4.16666667%, #f5f5f5), color-stop(4.16666667%, transparent), color-stop(8.33333333%, transparent), color-stop(8.33333333%, #f5f5f5), color-stop(12.5%, #f5f5f5), color-stop(12.5%, transparent), color-stop(16.66666667%, transparent), color-stop(16.66666667%, #f5f5f5), color-stop(20.83333333%, #f5f5f5), color-stop(20.83333333%, transparent), color-stop(25%, transparent), color-stop(25%, #f5f5f5), color-stop(29.16666667%, #f5f5f5), color-stop(29.16666667%, transparent), color-stop(33.33333333%, transparent), color-stop(33.33333333%, #f5f5f5), color-stop(37.5%, #f5f5f5), color-stop(37.5%, transparent), color-stop(41.66666667%, transparent), color-stop(41.66666667%, #f5f5f5), color-stop(45.83333333%, #f5f5f5), color-stop(45.83333333%, transparent), color-stop(50%, transparent), color-stop(50%, #f5f5f5), color-stop(54.16666667%, #f5f5f5), color-stop(54.16666667%, transparent), color-stop(58.33333333%, transparent), color-stop(58.33333333%, #f5f5f5), color-stop(62.5%, #f5f5f5), color-stop(62.5%, transparent), color-stop(66.66666667%, transparent), color-stop(66.66666667%, #f5f5f5), color-stop(70.83333333%, #f5f5f5), color-stop(70.83333333%, transparent), color-stop(75%, transparent), color-stop(75%, #f5f5f5), color-stop(79.16666667%, #f5f5f5), color-stop(79.16666667%, transparent), color-stop(83.33333333%, transparent), color-stop(83.33333333%, #f5f5f5), color-stop(87.5%, #f5f5f5), color-stop(87.5%, transparent), color-stop(91.66666667%, transparent), color-stop(91.66666667%, #f5f5f5), color-stop(95.83333333%, #f5f5f5), color-stop(95.83333333%, transparent));
  background-image: linear-gradient(90deg, #f5f5f5 4.16666667%, transparent 4.16666667%, transparent 8.33333333%, #f5f5f5 8.33333333%, #f5f5f5 12.5%, transparent 12.5%, transparent 16.66666667%, #f5f5f5 16.66666667%, #f5f5f5 20.83333333%, transparent 20.83333333%, transparent 25%, #f5f5f5 25%, #f5f5f5 29.16666667%, transparent 29.16666667%, transparent 33.33333333%, #f5f5f5 33.33333333%, #f5f5f5 37.5%, transparent 37.5%, transparent 41.66666667%, #f5f5f5 41.66666667%, #f5f5f5 45.83333333%, transparent 45.83333333%, transparent 50%, #f5f5f5 50%, #f5f5f5 54.16666667%, transparent 54.16666667%, transparent 58.33333333%, #f5f5f5 58.33333333%, #f5f5f5 62.5%, transparent 62.5%, transparent 66.66666667%, #f5f5f5 66.66666667%, #f5f5f5 70.83333333%, transparent 70.83333333%, transparent 75%, #f5f5f5 75%, #f5f5f5 79.16666667%, transparent 79.16666667%, transparent 83.33333333%, #f5f5f5 83.33333333%, #f5f5f5 87.5%, transparent 87.5%, transparent 91.66666667%, #f5f5f5 91.66666667%, #f5f5f5 95.83333333%, transparent 95.83333333%);
}
.grid-demo .ant-row > div,
[id^='components-grid-demo-'] .ant-row > div,
.grid-demo .code-box-demo .ant-row > div,
[id^='components-grid-demo-'] .code-box-demo .ant-row > div {
  min-height: 30px;
  margin-top: 8px;
  margin-bottom: 8px;
  color: #fff;
  text-align: center;
  border-radius: 0;
}
.grid-demo .code-box-demo .ant-row > div:not(.gutter-row),
[id^='components-grid-demo-'] .code-box-demo .ant-row > div:not(.gutter-row) {
  padding: 16px 0;
  background: #0092ff;
}
.grid-demo .code-box-demo .ant-row > div:not(.gutter-row):nth-child(2n + 1),
[id^='components-grid-demo-'] .code-box-demo .ant-row > div:not(.gutter-row):nth-child(2n + 1) {
  background: rgba(0, 146, 255, 0.75);
}
.grid-demo .ant-row .demo-col,
[id^='components-grid-demo-'] .ant-row .demo-col,
.grid-demo .code-box-demo .ant-row .demo-col,
[id^='components-grid-demo-'] .code-box-demo .ant-row .demo-col {
  margin-top: 0;
  margin-bottom: 0;
  padding: 30px 0;
  color: #fff;
  font-size: 18px;
  text-align: center;
  border: none;
}
.grid-demo .ant-row .demo-col-1,
[id^='components-grid-demo-'] .ant-row .demo-col-1 {
  background: rgba(0, 146, 255, 0.75);
}
.grid-demo .ant-row .demo-col-2,
[id^='components-grid-demo-'] .ant-row .demo-col-2,
.grid-demo .code-box-demo .ant-row .demo-col-2,
[id^='components-grid-demo-'] .code-box-demo .ant-row .demo-col-2 {
  background: rgba(0, 146, 255, 0.5);
}
.grid-demo .ant-row .demo-col-3,
[id^='components-grid-demo-'] .ant-row .demo-col-3,
.grid-demo .code-box-demo .ant-row .demo-col-3,
[id^='components-grid-demo-'] .code-box-demo .ant-row .demo-col-3 {
  color: #999;
  background: rgba(255, 255, 255, 0.2);
}
.grid-demo .ant-row .demo-col-4,
[id^='components-grid-demo-'] .ant-row .demo-col-4,
.grid-demo .code-box-demo .ant-row .demo-col-4,
[id^='components-grid-demo-'] .code-box-demo .ant-row .demo-col-4 {
  background: rgba(0, 146, 255, 0.6);
}
.grid-demo .ant-row .demo-col-5,
[id^='components-grid-demo-'] .ant-row .demo-col-5,
.grid-demo .code-box-demo .ant-row .demo-col-5,
[id^='components-grid-demo-'] .code-box-demo .ant-row .demo-col-5 {
  color: #999;
  background: rgba(255, 255, 255, 0.2);
}
.grid-demo .code-box-demo .height-100,
[id^='components-grid-demo-'] .code-box-demo .height-100 {
  height: 100px;
  line-height: 100px;
}
.grid-demo .code-box-demo .height-50,
[id^='components-grid-demo-'] .code-box-demo .height-50 {
  height: 50px;
  line-height: 50px;
}
.grid-demo .code-box-demo .height-120,
[id^='components-grid-demo-'] .code-box-demo .height-120 {
  height: 120px;
  line-height: 120px;
}
.grid-demo .code-box-demo .height-80,
[id^='components-grid-demo-'] .code-box-demo .height-80 {
  height: 80px;
  line-height: 80px;
}
[id='components-grid-demo-playground'] > .code-box-demo .ant-row > div,
[id='components-grid-demo-gutter'] > .code-box-demo .ant-row > div {
  margin-top: 0;
  margin-bottom: 0;
}
.markdown ul.ant-timeline {
  line-height: 2;
}
.markdown ul.ant-timeline li.ant-timeline-item {
  margin: 0;
  padding: 0 0 30px;
  list-style: none;
}
.markdown ul.ant-timeline li.ant-timeline-item .ant-timeline-item-content {
  position: relative;
  top: -14px;
  padding-left: 32px;
  font-size: 14px;
}
.markdown ul.ant-timeline li.ant-timeline-item .ant-timeline-item-content > h2 {
  margin-top: 0;
  padding-top: 4px;
}
.markdown ul.ant-timeline li.ant-timeline-item:first-child {
  margin-top: 40px;
}
.design-inline-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -20px;
}
.design-inline-cards > * {
  -webkit-box-flex: 10%;
      -ms-flex: 10%;
          flex: 10%;
  margin: 0 20px;
}
.design-inline-cards img {
  width: 100%;
  max-width: 100%;
}
.design-inline-cards h4 {
  margin-bottom: 0;
}
.preview-image-boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  float: right;
  clear: both;
  width: 496px;
  margin: 0 0 70px 64px;
}
.preview-image-boxes-with-carousel {
  width: 420px;
}
.preview-image-boxes-with-carousel .preview-image-box img {
  padding: 0;
}
.preview-image-boxes + .preview-image-boxes {
  margin-top: -35px;
}
.preview-image-box {
  float: left;
  width: 100%;
}
.preview-image-box + .preview-image-box {
  margin-left: 24px;
}
.preview-image-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 16px;
  text-align: center;
  background: #f2f4f5;
}
.preview-image-wrapper.video {
  display: block;
  padding: 0;
  background: 0;
}
.preview-image-wrapper video {
  display: block;
  width: 100%;
}
.preview-image-wrapper video + svg {
  position: absolute;
  top: 0;
  left: 0;
}
.preview-image-wrapper.good::after {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 3px;
  background: #515164;
  content: '';
}
.preview-image-wrapper.bad::after {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 3px;
  background: #d3382f;
  content: '';
}
.preview-image-title {
  margin-top: 5px;
  color: #313140;
  font-size: 12px;
}
.preview-image-description {
  margin-top: 2px;
  color: rgba(0, 0, 0, 0.45);
  font-size: 12px;
  line-height: 1.5;
}
.preview-image-description hr {
  margin: 2px 0;
  background: none;
  border: 0;
}
.preview-image-box img {
  max-width: 100%;
  padding: 12px;
  background: #fff;
  border-radius: 8px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.preview-image-box img.no-padding {
  padding: 0;
  background: none;
}
.preview-image-boxes.preview-image-boxes-with-carousel img {
  padding: 0;
  -webkit-box-shadow: 0 1px 0 0 #ddd, 0 3px 0 0 #fff, 0 4px 0 0 #ddd, 0 6px 0 0 #fff, 0 7px 0 0 #ddd;
          box-shadow: 0 1px 0 0 #ddd, 0 3px 0 0 #fff, 0 4px 0 0 #ddd, 0 6px 0 0 #fff, 0 7px 0 0 #ddd;
}
.preview-image-box img:hover {
  -webkit-box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.3);
          box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.3);
}
.image-modal {
  text-align: center;
}
.image-modal-container {
  position: relative;
  text-align: center;
}
.image-modal .ant-carousel .slick-slider {
  padding-bottom: 24px;
}
.image-modal .ant-carousel .slick-slider img {
  display: inline;
  max-width: 100%;
}
.image-modal .ant-carousel .slick-dots {
  bottom: 4px;
}
.image-modal .ant-carousel .slick-dots li button {
  background: #888;
}
.image-modal .image-modal-single.slick-slider {
  padding-bottom: 0;
}
.image-modal .image-modal-single .slick-dots {
  display: none !important;
}
.transition-video-player,
.motion-video-min {
  float: right;
  width: 600px;
  padding: 0 0 70px 20px;
}
.transition-video-player .preview-image-wrapper,
.motion-video-min .preview-image-wrapper {
  padding: 0;
}
.motion-video-min {
  width: 390px;
}
.motion-principle-wrapper {
  width: 100%;
  max-width: 900px;
  margin: 48px 0 24px;
}
.principle-wrapper {
  width: 100%;
}
.principle-wrapper .principle {
  display: inline-block;
  width: 100%;
  min-height: 180px;
  margin-right: 12.5%;
  margin-bottom: 24px;
  padding: 24px;
  font-size: 24px;
  text-align: center;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
}
.principle-wrapper .principle:last-child {
  margin-right: 0;
}
.principle-wrapper .principle h4 {
  margin: 16px 0 8px;
}
.principle-wrapper .principle p {
  font-size: 12px;
  line-height: 24px;
}
.toc {
  margin: 16px 0;
  padding-left: 0;
  font-size: 12px;
  list-style: none;
  border-left: 1px solid #f0f0f0;
}
.ant-row-rtl .toc {
  border-right: 1px solid #f0f0f0;
  border-left: none;
}
ul.toc > li {
  margin-left: 0;
  padding-left: 0;
  line-height: 1.5;
  list-style: none;
}
ul.toc > li:not(:last-child) {
  margin-bottom: 4px;
}
.ant-row-rtl ul.toc > li {
  margin-right: 0;
  padding-right: 0;
}
.toc li > ul {
  display: none;
  font-size: 12px;
  text-indent: 8px;
}
.toc a {
  display: block;
  width: 110px;
  margin-left: -1px;
  padding-left: 16px;
  overflow: hidden;
  color: #313140;
  white-space: nowrap;
  text-overflow: ellipsis;
  border-left: 1px solid transparent;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ant-row-rtl .toc a {
  margin-right: -1px;
  margin-left: 0;
  padding-right: 16px;
  padding-left: 0;
  border-right: 1px solid transparent;
  border-left: none;
}
.toc a:hover {
  color: #515164;
}
.toc a.current {
  color: #515164;
  border-color: #515164;
}
.toc-affix {
  position: absolute;
  top: 8px;
  right: 20px;
}
.toc-affix .ant-affix {
  z-index: 9;
  max-height: calc(100vh - 16px);
  overflow-x: hidden;
  overflow-y: auto;
  background: #fff;
}
.ant-row-rtl .toc-affix {
  right: auto;
  left: 20px;
}
.toc-affix-bottom {
  position: absolute;
  right: 20px;
  bottom: 88px;
}
.toc-affix-bottom .ant-affix {
  background: #fff;
}
.ant-row-rtl .toc-affix-bottom {
  right: auto;
  left: 20px;
}
#page-404 {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 100%;
  background-image: url('https://os.alipayobjects.com/rmsportal/NOAjOBbnYCrNzrW.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  background-attachment: fixed;
}
#page-404 section {
  position: absolute;
  top: 48%;
  left: 55%;
  margin: -103px 0 0 -120px;
  text-align: center;
}
#page-404 h1 {
  color: #515164;
  font-weight: 500;
  font-size: 120px;
}
#page-404 p {
  color: #313140;
  font-size: 18px;
}
/**
* prism.js default theme for JavaScript, CSS and HTML
* Based on dabblet (http://dabblet.com)
* @author Lea Verou
*/
pre code {
  display: block;
  padding: 16px 32px;
  color: #313140;
  font-size: 14px;
  font-family: 'Lucida Console', Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
  line-height: 2;
  white-space: pre;
  background: white;
  border: 1px solid #e9e9e9;
  border-radius: 8px;
}
code[class*='language-'],
pre[class*='language-'] {
  color: black;
  font-family: 'Lucida Console', Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
  line-height: 1.5;
  direction: ltr;
  white-space: pre;
  text-align: left;
  word-wrap: normal;
  word-break: normal;
  word-spacing: normal;
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
  -ms-hyphens: none;
  hyphens: none;
  background: none;
}
pre[class*='language-']::-moz-selection,
pre[class*='language-'] ::-moz-selection,
code[class*='language-']::-moz-selection,
code[class*='language-'] ::-moz-selection {
  text-shadow: none;
  background: #b3d4fc;
}
pre[class*='language-']::-moz-selection, pre[class*='language-'] ::-moz-selection, code[class*='language-']::-moz-selection, code[class*='language-'] ::-moz-selection {
  text-shadow: none;
  background: #b3d4fc;
}
pre[class*='language-']::selection,
pre[class*='language-'] ::selection,
code[class*='language-']::selection,
code[class*='language-'] ::selection {
  text-shadow: none;
  background: #b3d4fc;
}
@media print {
  code[class*='language-'],
  pre[class*='language-'] {
    text-shadow: none;
  }
}
/* Code blocks */
pre[class*='language-'] {
  margin: 16px 0;
  padding: 12px 20px;
  overflow: auto;
}
:not(pre) > code[class*='language-'],
pre[class*='language-'] {
  background: #f5f5f5;
}
/* Inline code */
:not(pre) > code[class*='language-'] {
  padding: 0.1em;
  white-space: normal;
  border-radius: 0.3em;
}
.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
  color: slategray;
}
.token.punctuation {
  color: #999;
}
.namespace {
  opacity: 0.7;
}
.token.property,
.token.tag,
.token.boolean,
.token.number,
.token.constant,
.token.symbol,
.token.deleted {
  color: #f81d22;
}
.token.selector,
.token.attr-name,
.token.string,
.token.char,
.token.builtin,
.token.inserted {
  color: #0b8235;
}
.token.operator,
.token.entity,
.token.url,
.language-css .token.string,
.style .token.string {
  color: #0b8235;
}
.token.atrule,
.token.attr-value,
.token.keyword {
  color: #008dff;
}
.token.function {
  color: #f81d22;
}
.token.regex,
.token.important,
.token.variable {
  color: #e90;
}
.token.important,
.token.bold {
  font-weight: bold;
}
.token.italic {
  font-style: italic;
}
.token.entity {
  cursor: help;
}
.code-boxes-col-1-1 {
  width: 100%;
}
.code-boxes-col-2-1 {
  display: inline-block;
  vertical-align: top;
}
.code-box {
  position: relative;
  display: inline-block;
  width: 100%;
  margin: 0 0 16px;
  border: 1px solid #f0f0f0;
  border-radius: 8px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.code-box .code-box-title,
.code-box .code-box-title a {
  color: #313140;
  background: #fff;
}
.code-box .code-box-description p {
  color: #313140;
}
.code-box a.edit-button .anticon {
  color: inherit;
}
.code-box a.edit-button .anticon:hover {
  color: rgba(0, 0, 0, 0.75);
}
.code-box,
.code-box .code-box-demo {
  background-color: #fff;
}
.code-box .markdown pre {
  margin: 0.5em 0;
  padding: 6px 12px;
}
.code-box .markdown pre code {
  margin: 0;
  background: #f5f5f5;
}
.code-box:target {
  border: 1px solid #515164;
}
.code-box-expand-trigger {
  position: relative;
  margin-left: 12px;
  color: #3b4357;
  font-size: 20px;
  cursor: pointer;
  opacity: 0.75;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.code-box-expand-trigger:hover {
  opacity: 1;
}
.ant-row-rtl .code-box-expand-trigger {
  margin-right: 8px;
  margin-left: 0;
}
.code-box-title {
  position: absolute;
  top: -14px;
  margin-left: 16px;
  padding: 1px 8px;
  color: #777;
  background: #fff;
  border-radius: 8px 8px 0 0;
  -webkit-transition: background-color 0.4s;
  transition: background-color 0.4s;
}
.ant-row-rtl .code-box-title {
  margin-right: 16px;
  margin-left: 0;
  border-radius: 8px 0 0 8px;
}
.code-box-title a,
.code-box-title a:hover {
  color: #313140;
  font-weight: 500;
  font-size: 14px;
}
.code-box-description {
  padding: 18px 24px 12px;
}
.code-box a.edit-button {
  position: absolute;
  top: 7px;
  right: -16px;
  padding-right: 6px;
  font-size: 12px;
  text-decoration: none;
  background: inherit;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}
.ant-row-rtl .code-box a.edit-button {
  right: auto;
  left: -21px;
  padding-right: 0;
  padding-left: 6px;
}
.code-box-demo {
  padding: 42px 24px 50px;
  color: #313140;
  border-bottom: 1px solid #f0f0f0;
}
.code-box iframe {
  width: 100%;
  border: 0;
}
.code-box-meta.markdown {
  position: relative;
  width: 100%;
  font-size: 14px;
  border-radius: 0 0 8px 8px;
  -webkit-transition: background-color 0.4s;
  transition: background-color 0.4s;
}
.code-box-meta blockquote {
  margin: 0;
}
.code-box-meta h4,
section.code-box-meta p {
  margin: 0;
}
.code-box-meta > p {
  width: 100%;
  margin: 0.5em 0;
  padding-right: 25px;
  font-size: 12px;
  word-break: break-word;
}
.ant-row-rtl .code-box-meta > p {
  padding-right: 0;
  padding-left: 25px;
}
.code-box.expand .code-box-meta {
  border-bottom: 1px dashed #f0f0f0;
  border-radius: 0;
}
.code-box .code-expand-icon {
  cursor: pointer;
}
.code-box .code-expand-icon-show,
.code-box .code-expand-icon-hide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  margin: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.ant-row-rtl .code-box .code-expand-icon-show,
.ant-row-rtl .code-box .code-expand-icon-hide {
  right: 0;
  left: auto;
}
.code-box .code-expand-icon-show {
  opacity: 0.55;
  pointer-events: auto;
}
.code-box .code-expand-icon-show:hover {
  opacity: 1;
}
.code-box .code-expand-icon.ant-tooltip-open .code-expand-icon-show {
  opacity: 1;
}
.code-box .code-expand-icon-hide {
  opacity: 0;
  pointer-events: none;
}
.code-box .highlight-wrapper {
  display: none;
  overflow: auto;
  border-radius: 0 0 8px 8px;
}
.code-box .highlight-wrapper-expand {
  display: block;
}
.code-box .highlight {
  position: relative;
}
.code-box .highlight .ant-tabs-nav-scroll {
  text-align: center;
}
.code-box .highlight pre {
  margin: 0;
  padding: 0;
  background: #fff;
}
.code-box .highlight:not(:first-child) {
  border-top: 1px dashed #f0f0f0;
}
.code-box-actions {
  padding-top: 12px;
  text-align: center;
  border-top: 1px dashed #f0f0f0;
  opacity: 0.7;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.code-box-actions:hover {
  opacity: 1;
}
.code-box-actions > i,
.code-box-actions > form,
.code-box-actions > span {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 16px;
  vertical-align: top;
}
.ant-row-rtl .code-box-actions > i,
.ant-row-rtl .code-box-actions > form,
.ant-row-rtl .code-box-actions > span {
  margin-right: 16px;
  margin-left: 0;
}
.code-box-actions > i:first-child,
.code-box-actions > form:first-child,
.code-box-actions > span:first-child {
  margin-left: 0;
}
.ant-row-rtl .code-box-actions > i:first-child,
.ant-row-rtl .code-box-actions > form:first-child,
.ant-row-rtl .code-box-actions > span:first-child {
  margin-right: 0;
}
.code-box-actions > form {
  top: -2px;
}
.code-box-code-action {
  width: 20px;
  height: 20px;
  color: rgba(0, 0, 0, 0.45);
  font-size: 16px;
  line-height: 18px;
  cursor: pointer;
  -webkit-transition: all 0.24s;
  transition: all 0.24s;
}
.code-box-code-action:hover {
  color: rgba(0, 0, 0, 0.75);
}
.code-box-code-copy {
  width: 20px;
  height: 20px;
  color: rgba(0, 0, 0, 0.45);
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  background: #fff;
  border-radius: 20px;
  cursor: pointer;
  -webkit-transition: all 0.24s;
  transition: all 0.24s;
}
.code-box-code-copy:hover {
  color: rgba(0, 0, 0, 0.75);
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.code-box-code-copy.anticon-check {
  color: #98d45f !important;
  font-weight: bold;
}
.code-box-codepen {
  width: 20px;
  height: 20px;
  overflow: hidden;
  text-indent: -9999px;
  background: transparent url('https://gw.alipayobjects.com/zos/rmsportal/OtZslpOjYXijshDERXwc.svg') center / 14px no-repeat;
  border: 0;
  cursor: pointer;
  opacity: 0.65;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.code-box-codepen:hover {
  opacity: 1;
}
.code-box-riddle {
  display: none;
  width: 20px;
  height: 20px;
  overflow: hidden;
  text-indent: -9999px;
  background: transparent url('https://gw.alipayobjects.com/zos/rmsportal/DlHbxMCyeuyOrqOdbgik.svg') center / 14px no-repeat;
  border: 0;
  cursor: pointer;
  opacity: 0.65;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.code-box-riddle:hover {
  opacity: 1;
}
.code-box-codesandbox {
  width: 20px;
  height: 20px;
  overflow: hidden;
  text-indent: -9999px;
  background: transparent url('https://gw.alipayobjects.com/zos/rmsportal/aaYmtdDyHSCkXyLZVgGK.svg') center / 14px no-repeat;
  border: 0;
  cursor: pointer;
  opacity: 0.65;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.code-box-codesandbox:hover {
  opacity: 1;
}
.highlight-wrapper:hover .code-box-code-copy,
.highlight-wrapper:hover .code-box-codepen,
.highlight-wrapper:hover .code-box-codesandbox,
.highlight-wrapper:hover .code-box-riddle {
  opacity: 1;
}
.code-box pre {
  width: auto;
  margin: 0;
}
.code-box pre code {
  background: #fff;
  border: none;
}
.code-box-debug {
  border-color: #d3adf7;
}
.code-box-debug .code-box-title a {
  color: #722ed1;
}
.show-riddle-button .code-box-riddle {
  display: block;
}
.all-code-box-controls {
  float: right;
}
.ant-row-rtl .all-code-box-controls {
  float: left;
}
.ant-row-rtl #components-tooltip-demo-placement .code-box-demo,
.ant-row-rtl #components-popover-demo-placement .code-box-demo,
.ant-row-rtl #components-popconfirm-demo-placement .code-box-demo {
  direction: ltr;
}
.color-palettes {
  margin: 0 1%;
}
.color-palettes-dark {
  margin: 0;
  padding: 0 28px;
  background-color: #141414;
}
.color-palettes-dark .color-title {
  color: rgba(255, 255, 255, 0.85);
}
.color-palettes-dark .color-description {
  color: rgba(255, 255, 255, 0.45);
}
.color-palettes-dark .color-palette {
  margin: 45px 3.5% 45px 0;
}
.color-palettes-dark .color-palette:nth-of-type(3n) {
  margin-right: 0;
}
.color-palettes-dark .color-palette .main-color-item {
  margin-right: 0;
}
.color-palettes-dark .color-palette .main-color-item:hover {
  margin-right: -8px;
}
.color-palette {
  display: inline-block;
  width: 31%;
  margin: 45px 1%;
}
.color-palette-pick {
  margin: 0 0 20px;
  font-size: 20px;
  text-align: center;
}
.color-palette-picker {
  margin: 24px 0;
}
.color-palette-picker-value {
  position: relative;
  top: -3px;
  margin-left: 16px;
  font-size: 14px;
  font-family: Consolas, sans-serif;
}
.color-palette-picker-validation {
  position: relative;
  top: -3px;
  margin-left: 16px;
  color: #d3382f;
  font-size: 13px;
}
.color-palette-picker-validation-dark {
  margin-left: 0;
}
.main-color {
  text-align: left;
}
.main-color .palette-blue-1 {
  background: #e1f4fa;
}
.main-color .palette-blue-2 {
  background: #98d8ed;
}
.main-color .palette-blue-3 {
  background: #6cbfe0;
}
.main-color .palette-blue-4 {
  background: #44a6d4;
}
.main-color .palette-blue-5 {
  background: #208cc7;
}
.main-color .palette-blue-6 {
  background: #0071b9;
}
.main-color .palette-blue-7 {
  background: #005694;
}
.main-color .palette-blue-8 {
  background: #003c6e;
}
.main-color .palette-blue-9 {
  background: #002547;
}
.main-color .palette-blue-10 {
  background: #001021;
}
.main-color .palette-purple-1 {
  background: #f9f0ff;
}
.main-color .palette-purple-2 {
  background: #efdbff;
}
.main-color .palette-purple-3 {
  background: #d3adf7;
}
.main-color .palette-purple-4 {
  background: #b37feb;
}
.main-color .palette-purple-5 {
  background: #9254de;
}
.main-color .palette-purple-6 {
  background: #722ed1;
}
.main-color .palette-purple-7 {
  background: #531dab;
}
.main-color .palette-purple-8 {
  background: #391085;
}
.main-color .palette-purple-9 {
  background: #22075e;
}
.main-color .palette-purple-10 {
  background: #120338;
}
.main-color .palette-cyan-1 {
  background: #e6fffa;
}
.main-color .palette-cyan-2 {
  background: #9bf2e5;
}
.main-color .palette-cyan-3 {
  background: #6ee6d8;
}
.main-color .palette-cyan-4 {
  background: #45d9cc;
}
.main-color .palette-cyan-5 {
  background: #21ccc3;
}
.main-color .palette-cyan-6 {
  background: #00bfbd;
}
.main-color .palette-cyan-7 {
  background: #009699;
}
.main-color .palette-cyan-8 {
  background: #006d73;
}
.main-color .palette-cyan-9 {
  background: #00464d;
}
.main-color .palette-cyan-10 {
  background: #002226;
}
.main-color .palette-green-1 {
  background: #fafff0;
}
.main-color .palette-green-2 {
  background: #f9fff0;
}
.main-color .palette-green-3 {
  background: #f3fae8;
}
.main-color .palette-green-4 {
  background: #d5edb7;
}
.main-color .palette-green-5 {
  background: #b6e089;
}
.main-color .palette-green-6 {
  background: #98d45f;
}
.main-color .palette-green-7 {
  background: #74ad45;
}
.main-color .palette-green-8 {
  background: #54872f;
}
.main-color .palette-green-9 {
  background: #37611d;
}
.main-color .palette-green-10 {
  background: #203b11;
}
.main-color .palette-magenta-1 {
  background: #fff0f6;
}
.main-color .palette-magenta-2 {
  background: #ffd6e7;
}
.main-color .palette-magenta-3 {
  background: #ffadd2;
}
.main-color .palette-magenta-4 {
  background: #ff85c0;
}
.main-color .palette-magenta-5 {
  background: #f759ab;
}
.main-color .palette-magenta-6 {
  background: #eb2f96;
}
.main-color .palette-magenta-7 {
  background: #c41d7f;
}
.main-color .palette-magenta-8 {
  background: #9e1068;
}
.main-color .palette-magenta-9 {
  background: #780650;
}
.main-color .palette-magenta-10 {
  background: #520339;
}
.main-color .palette-red-1 {
  background: #d3382f;
}
.main-color .palette-red-2 {
  background: #ff4438;
}
.main-color .palette-red-3 {
  background: #ff8e87;
}
.main-color .palette-red-4 {
  background: #ffa79c;
}
.main-color .palette-red-5 {
  background: #ff7e73;
}
.main-color .palette-red-6 {
  background: #ff554b;
}
.main-color .palette-red-7 {
  background: #d93734;
}
.main-color .palette-red-8 {
  background: #b32224;
}
.main-color .palette-red-9 {
  background: #8c141a;
}
.main-color .palette-red-10 {
  background: #660d15;
}
.main-color .palette-volcano-1 {
  background: #fff2e8;
}
.main-color .palette-volcano-2 {
  background: #ffd8bf;
}
.main-color .palette-volcano-3 {
  background: #ffbb96;
}
.main-color .palette-volcano-4 {
  background: #ff9c6e;
}
.main-color .palette-volcano-5 {
  background: #ff7a45;
}
.main-color .palette-volcano-6 {
  background: #fa541c;
}
.main-color .palette-volcano-7 {
  background: #d4380d;
}
.main-color .palette-volcano-8 {
  background: #ad2102;
}
.main-color .palette-volcano-9 {
  background: #871400;
}
.main-color .palette-volcano-10 {
  background: #610b00;
}
.main-color .palette-orange-1 {
  background: #fff7e6;
}
.main-color .palette-orange-2 {
  background: #ffe7ba;
}
.main-color .palette-orange-3 {
  background: #ffd591;
}
.main-color .palette-orange-4 {
  background: #ffc069;
}
.main-color .palette-orange-5 {
  background: #ffa940;
}
.main-color .palette-orange-6 {
  background: #fa8c16;
}
.main-color .palette-orange-7 {
  background: #d46b08;
}
.main-color .palette-orange-8 {
  background: #ad4e00;
}
.main-color .palette-orange-9 {
  background: #873800;
}
.main-color .palette-orange-10 {
  background: #612500;
}
.main-color .palette-gold-1 {
  background: #fffce6;
}
.main-color .palette-gold-2 {
  background: #fff6bd;
}
.main-color .palette-gold-3 {
  background: #ffed94;
}
.main-color .palette-gold-4 {
  background: #ffe16b;
}
.main-color .palette-gold-5 {
  background: #ffd342;
}
.main-color .palette-gold-6 {
  background: #ffc319;
}
.main-color .palette-gold-7 {
  background: #d99b0b;
}
.main-color .palette-gold-8 {
  background: #b37700;
}
.main-color .palette-gold-9 {
  background: #8c5900;
}
.main-color .palette-gold-10 {
  background: #663d00;
}
.main-color .palette-yellow-1 {
  background: #feffe6;
}
.main-color .palette-yellow-2 {
  background: #ffffb8;
}
.main-color .palette-yellow-3 {
  background: #fffb8f;
}
.main-color .palette-yellow-4 {
  background: #fff566;
}
.main-color .palette-yellow-5 {
  background: #ffec3d;
}
.main-color .palette-yellow-6 {
  background: #fadb14;
}
.main-color .palette-yellow-7 {
  background: #d4b106;
}
.main-color .palette-yellow-8 {
  background: #ad8b00;
}
.main-color .palette-yellow-9 {
  background: #876800;
}
.main-color .palette-yellow-10 {
  background: #614700;
}
.main-color .palette-lime-1 {
  background: #fcffe6;
}
.main-color .palette-lime-2 {
  background: #f4ffb8;
}
.main-color .palette-lime-3 {
  background: #eaff8f;
}
.main-color .palette-lime-4 {
  background: #d3f261;
}
.main-color .palette-lime-5 {
  background: #bae637;
}
.main-color .palette-lime-6 {
  background: #a0d911;
}
.main-color .palette-lime-7 {
  background: #7cb305;
}
.main-color .palette-lime-8 {
  background: #5b8c00;
}
.main-color .palette-lime-9 {
  background: #3f6600;
}
.main-color .palette-lime-10 {
  background: #254000;
}
.main-color .palette-geekblue-1 {
  background: #f0f5ff;
}
.main-color .palette-geekblue-2 {
  background: #d6e4ff;
}
.main-color .palette-geekblue-3 {
  background: #adc6ff;
}
.main-color .palette-geekblue-4 {
  background: #85a5ff;
}
.main-color .palette-geekblue-5 {
  background: #597ef7;
}
.main-color .palette-geekblue-6 {
  background: #2f54eb;
}
.main-color .palette-geekblue-7 {
  background: #1d39c4;
}
.main-color .palette-geekblue-8 {
  background: #10239e;
}
.main-color .palette-geekblue-9 {
  background: #061178;
}
.main-color .palette-geekblue-10 {
  background: #030852;
}
.main-color .palette-gray-1 {
  background: #fff;
}
.main-color .palette-gray-2 {
  background: #fafafa;
}
.main-color .palette-gray-3 {
  background: #f5f5f5;
}
.main-color .palette-gray-4 {
  background: #f0f0f0;
}
.main-color .palette-gray-5 {
  background: #d9d9d9;
}
.main-color .palette-gray-6 {
  background: #bfbfbf;
}
.main-color .palette-gray-7 {
  background: #8c8c8c;
}
.main-color .palette-gray-8 {
  background: #595959;
}
.main-color .palette-gray-9 {
  background: #434343;
}
.main-color .palette-gray-10 {
  background: #262626;
}
.main-color .palette-gray-11 {
  background: #1f1f1f;
}
.main-color .palette-gray-12 {
  background: #141414;
}
.main-color .palette-gray-13 {
  background: #000;
}
.main-color-item {
  position: relative;
  height: 44px;
  margin-right: 4px;
  padding: 0 12px;
  font-size: 14px;
  font-family: Consolas, sans-serif;
  line-height: 44px;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.main-color-item:first-child {
  border-radius: 4px 4px 0 0;
}
.main-color-item:last-child {
  border-radius: 0 0 4px 4px;
}
.main-color-item:hover {
  margin-right: -8px;
  border-radius: 0 4px 4px 0;
}
.main-color-item .main-color-text {
  float: left;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.main-color-item .main-color-value {
  position: relative;
  left: 3px;
  float: right;
  -webkit-transform: scale(0.85);
          transform: scale(0.85);
  -webkit-transform-origin: 100% 50%;
          transform-origin: 100% 50%;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.color-title {
  margin: 0 0 24px;
  color: #5c6b77;
  font-weight: 500;
  font-size: 22px;
  text-align: center;
  text-transform: capitalize;
}
.color-description {
  display: block;
  color: #777;
  font-weight: lighter;
  font-size: 14px;
}
.main-color:hover .main-color-value {
  left: 0;
  opacity: 0.7;
}
.color-palette-horizontal {
  width: 100%;
}
.color-palette-horizontal-dark {
  height: 303px;
  padding: 32px 28px;
  background-color: #141414;
}
.color-palette-horizontal-dark .color-palette-picker {
  margin-bottom: 0;
}
.color-palette-horizontal-dark .color-palette-pick {
  color: rgba(255, 255, 255, 0.65);
  text-align: left;
}
.color-palette-horizontal-dark .color-palette-pick-hex {
  color: rgba(255, 255, 255, 0.65);
}
.color-palette-horizontal .main-color {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.color-palette-horizontal .main-color-item {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 86px;
  margin-right: 0;
  padding: 37px 0 0;
  line-height: normal;
  text-align: center;
  border-radius: 0;
}
.color-palette-horizontal .main-color-item .main-color-text {
  float: none;
}
.color-palette-horizontal .main-color-item:hover {
  height: 96px;
  margin-top: -10px;
  border-radius: 4px 4px 0 0;
}
.color-palette-horizontal .main-color-value {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  -webkit-transform-origin: unset;
          transform-origin: unset;
}
.color-palette-horizontal .main-color:hover .main-color-item {
  padding-top: 8px;
}
.color-palette-horizontal .main-color:hover .main-color-value {
  bottom: 8px;
  opacity: 0.7;
}
ul.anticons-list {
  margin: 10px 0;
  overflow: hidden;
  list-style: none;
}
ul.anticons-list li {
  position: relative;
  float: left;
  width: 16.66%;
  height: 100px;
  margin: 3px 0;
  padding: 10px 0 0;
  overflow: hidden;
  color: #555;
  text-align: center;
  list-style: none;
  background-color: inherit;
  border-radius: 4px;
  cursor: pointer;
  -webkit-transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}
ul.anticons-list li .anticon {
  margin: 12px 0 8px;
  font-size: 36px;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  will-change: transform;
}
ul.anticons-list li .anticon-class {
  display: block;
  font-family: 'Lucida Console', Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
  white-space: nowrap;
  text-align: center;
  -webkit-transform: scale(0.83);
          transform: scale(0.83);
}
ul.anticons-list li .anticon-class .ant-badge {
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
ul.anticons-list li:hover {
  color: #fff;
  background-color: #515164;
}
ul.anticons-list li:hover .anticon {
  -webkit-transform: scale(1.4);
          transform: scale(1.4);
}
ul.anticons-list li:hover .ant-badge {
  color: #fff;
}
ul.anticons-list li.TwoTone:hover {
  background-color: #8ecafe;
}
ul.anticons-list li.copied:hover {
  color: rgba(255, 255, 255, 0.2);
}
ul.anticons-list li::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #fff;
  line-height: 110px;
  text-align: center;
  opacity: 0;
  -webkit-transition: all 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
  transition: all 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
  content: 'Copied!';
}
ul.anticons-list li.copied::after {
  top: -10px;
  opacity: 1;
}
.copied-code {
  padding: 2px 4px 2px;
  font-size: 12px;
  background: #f5f5f5;
  border-radius: 2px;
}
.icon-pic-searcher {
  display: inline-block;
  margin: 0 8px;
}
.icon-pic-searcher .icon-pic-btn {
  color: rgba(0, 0, 0, 0.45);
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.icon-pic-searcher .icon-pic-btn:hover {
  color: rgba(0, 0, 0, 0.85);
}
.icon-pic-preview {
  width: 66px;
  height: 66px;
  margin-top: 10px;
  padding: 8px;
  text-align: center;
  border: 1px solid #e5e8ed;
  border-radius: 4px;
}
.icon-pic-preview > img {
  max-width: 50px;
  max-height: 50px;
}
.icon-pic-search-result {
  min-height: 50px;
  padding: 0 10px;
}
.icon-pic-search-result > .result-tip {
  padding: 10px 0;
  color: rgba(0, 0, 0, 0.45);
}
.icon-pic-search-result > table {
  width: 100%;
}
.icon-pic-search-result > table .col-icon {
  width: 80px;
  padding: 10px 0;
}
.icon-pic-search-result > table .col-icon > i {
  font-size: 30px;
}
.icon-pic-search-result > table .col-icon > i :hover {
  color: #595959;
}
/* Browser mockup code
 * Contribute: https://gist.github.com/jarthod/8719db9fef8deb937f4f
 * Live example: https://updown.io
 */
.browser-mockup {
  position: relative;
  border-top: 2em solid rgba(230, 230, 230, 0.7);
  border-radius: 3px 3px 0 0;
  -webkit-box-shadow: 0 0.1em 0.5em 0 rgba(0, 0, 0, 0.28);
          box-shadow: 0 0.1em 0.5em 0 rgba(0, 0, 0, 0.28);
}
.browser-mockup::before {
  position: absolute;
  top: -1.25em;
  left: 1em;
  display: block;
  width: 0.5em;
  height: 0.5em;
  background-color: #f44;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 0 2px #f44, 1.5em 0 0 2px #9b3, 3em 0 0 2px #fb5;
          box-shadow: 0 0 0 2px #f44, 1.5em 0 0 2px #9b3, 3em 0 0 2px #fb5;
  content: '';
}
.browser-mockup.with-tab::after {
  position: absolute;
  top: -2em;
  left: 5.5em;
  display: block;
  width: 20%;
  height: 0;
  border-right: 0.8em solid transparent;
  border-bottom: 2em solid white;
  border-left: 0.8em solid transparent;
  content: '';
}
.browser-mockup.with-url::after {
  position: absolute;
  top: -1.6em;
  left: 5.5em;
  display: block;
  width: calc(100% - 6em);
  height: 1.2em;
  background-color: white;
  border-radius: 2px;
  content: '';
}
.browser-mockup > * {
  display: block;
}
.new-version-info-modal img {
  position: absolute;
  top: 36px;
  left: 34px;
  width: 100px;
}
.new-version-info-modal p {
  margin-top: 1em;
}
.new-version-info-modal .anticon {
  display: none;
}
.new-version-info-modal .ant-confirm-body {
  margin-left: 120px;
}
.new-version-info-modal .ant-confirm-body .ant-confirm-title {
  font-size: 18px;
}
.new-version-info-modal .ant-confirm-body .ant-confirm-content {
  margin-left: 0;
}
.motion-container {
  height: 190px;
  margin: 40px 0 20px;
  line-height: 190px;
  text-align: center;
}
.motion-example {
  display: inline-block !important;
  width: 180px;
  height: 180px;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  line-height: 180px;
  text-align: center;
  background: url(https://gw.alipayobjects.com/zos/rmsportal/KDpgvguMpGfqaHPjicRK.svg) center / 180px;
  border-radius: 8px;
  -webkit-animation-duration: 0.5s !important;
          animation-duration: 0.5s !important;
}
.motion-select-wrapper {
  margin-bottom: 40px;
  text-align: center;
}
.motion-select {
  width: 180px;
  text-align: left;
}
.video-player {
  position: relative;
  max-width: 800px;
}
.video-player-right {
  float: right;
  width: 616px;
}
.nav-phone-icon {
  position: absolute;
  top: 25px;
  right: 30px;
  z-index: 1;
  display: none;
  width: 16px;
  height: 22px;
  cursor: pointer;
}
@media only screen and (max-width: 992px) {
  .main-container {
    padding-right: 48px;
    padding-left: 48px;
  }
  .main-container .toc-affix {
    display: none;
  }
  .code-boxes-col-2-1,
  .code-boxes-col-1-1 {
    float: none;
    width: 100%;
  }
}
@media only screen and (max-width: 767.99px) {
  .preview-image-boxes {
    float: none;
    width: 100%;
    margin: 0 !important;
  }
  .preview-image-box {
    width: 100%;
    margin: 10px 0;
    padding: 0;
  }
  .image-wrapper {
    display: none;
  }
  div.version {
    display: block;
    margin: 29px auto 16px;
  }
  .toc {
    display: none;
  }
  .nav-phone-icon {
    display: block;
  }
  .main {
    height: calc(100% - 86px);
  }
  .aside-container {
    float: none;
    width: auto;
    padding-bottom: 30px;
    border-right: 0;
  }
  .main-container,
  .ant-row-rtl .main-container {
    margin-right: 0;
    margin-left: 0;
    padding-right: 16px;
    padding-left: 16px;
  }
  .main-container > .markdown > *,
  .ant-row-rtl .main-container > .markdown > * {
    width: 100% !important;
  }
  .main-wrapper {
    width: 100%;
    margin: 0;
    border-radius: 0;
  }
  .prev-next-nav {
    width: calc(100% - 32px);
    margin-left: 16px;
  }
  .ant-row-rtl .prev-next-nav {
    margin-right: 16px;
    margin-left: 64px;
  }
  .drawer .ant-menu-inline .ant-menu-item::after,
  .drawer .ant-menu-vertical .ant-menu-item::after {
    right: auto;
    left: 0;
  }
  /** home 区块 **/
  .home-page-wrapper .page h2 {
    margin: 80px auto 64px;
  }
  .home-page-wrapper .parallax-bg {
    display: none;
  }
  .banner {
    display: block;
    height: 632px;
  }
  .banner-bg-wrapper {
    display: none;
  }
  .banner .img-wrapper,
  .banner .text-wrapper {
    display: inline-block;
    width: 100%;
    min-width: unset;
    max-width: unset;
    margin: auto;
    text-align: center;
  }
  .banner .img-wrapper {
    position: initial;
    margin-top: 20px;
    text-align: center;
  }
  .banner .img-wrapper svg {
    width: 100%;
    max-width: 260px;
    height: auto;
    margin: 0 auto;
  }
  .banner .text-wrapper {
    min-height: 200px;
    margin-top: 32px;
    padding: 0;
  }
  .banner .text-wrapper h1 {
    display: none;
  }
  .banner .text-wrapper p {
    color: #314659;
    font-size: 14px;
    line-height: 28px;
  }
  .banner .text-wrapper .banner-btns {
    display: block;
    min-width: 100%;
    white-space: nowrap;
    text-align: center;
  }
  .banner .text-wrapper .banner-btns .banner-btn {
    padding: 0 20px;
    font-size: 14px;
  }
  .banner .text-wrapper .banner-promote {
    min-width: 100%;
    margin-top: 32px;
  }
  .banner .text-wrapper .banner-promote .ant-divider {
    display: none;
  }
  .banner .text-wrapper .banner-promote a {
    font-size: 14px;
    white-space: nowrap;
  }
  .banner .text-wrapper .banner-promote a img {
    width: 20px;
  }
  .page1 {
    min-height: 1300px;
  }
  .page1 .ant-row {
    margin: 24px auto 64px;
  }
  .page1 .ant-row > div {
    margin-bottom: 48px;
  }
  .page2 {
    min-height: 840px;
    background: #fff;
  }
  .page2-content {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .page2-components {
    display: none;
  }
  .page2-product {
    min-height: auto;
    padding: 0 16px;
  }
  .page2-product .product-block {
    margin-bottom: 34px;
    padding-bottom: 35px;
    border-bottom: 1px solid #f0f0f0;
  }
  .page2-product .product-block:last-child {
    margin-bottom: 32px;
    border-bottom: none;
  }
  .page2-product .product-block:last-child .block-text-wrapper {
    height: auto;
  }
  .page2-product .product-block .block-image-wrapper {
    height: 88px;
  }
  .page2-product .product-block .block-image-wrapper img {
    height: 100%;
  }
  .page2-product .product-block .block-text-wrapper {
    padding-bottom: 0;
    border-bottom: none;
  }
  .page2-product .product-block .block-text-wrapper h4 {
    margin-bottom: 4px;
    font-size: 18px;
    line-height: 24px;
  }
  .page2-product .product-block .block-text-wrapper p {
    margin-bottom: 8px;
    font-size: 12px;
    line-height: 20px;
  }
  .page2-product .product-block .block-text-wrapper a {
    line-height: 20px;
  }
  .page2-product .product-block .block-text-wrapper .components-button-wrapper {
    margin-top: 16px;
    font-size: 12px;
  }
  .page2-product .product-block .block-text-wrapper .components-button-wrapper a {
    display: block;
  }
  .page2-product .product-block .block-text-wrapper a.more-mobile-react,
  .page2-product .product-block .block-text-wrapper a.more-mobile-angular {
    margin-top: 0;
    color: #f5f5f5;
  }
  .page2-product .product-block .block-text-wrapper a.more-mobile-react:hover,
  .page2-product .product-block .block-text-wrapper a.more-mobile-angular:hover {
    color: #40a9ff;
  }
  .page3 {
    min-height: 688px;
    background: url('https://gw.alipayobjects.com/zos/rmsportal/qICoJIqqQRMeRGhPHBBS.svg') no-repeat;
    background-size: cover;
  }
  .page3 .ant-row {
    margin: 0 8px;
  }
  .page3 .page3-block {
    margin-bottom: 32px;
    padding: 24px;
    background: #fff;
    border-radius: 4px;
    -webkit-box-shadow: 0 8px 16px rgba(174, 185, 193, 0.3);
            box-shadow: 0 8px 16px rgba(174, 185, 193, 0.3);
  }
  .page3 .page3-block:nth-child(2) .page3-img-wrapper img {
    display: block;
    width: 70%;
    margin: auto;
  }
  .page3 .page3-block p {
    font-size: 12px;
  }
  .page3 .page3-block .page3-img-wrapper {
    width: 20%;
  }
  .page3 .page3-block .page3-img-wrapper img {
    width: 100%;
  }
  .page3 .page3-block .page3-text-wrapper {
    width: 80%;
    max-width: initial;
    margin: 0;
    padding-left: 16px;
  }
}
.algolia-autocomplete .ds-dropdown-menu {
  border: none;
  -webkit-box-shadow: 0px 5px 25px rgba(0, 40, 117, 0.1);
          box-shadow: 0px 5px 25px rgba(0, 40, 117, 0.1);
}
.algolia-autocomplete .ds-dropdown-menu [class^='ds-dataset-'] {
  background: #fff;
  border: none;
}
.algolia-autocomplete .ds-dropdown-menu [class^='ds-dataset-'] .algolia-docsearch-suggestion {
  background: #fff;
}
.algolia-autocomplete .ds-dropdown-menu::before {
  display: none;
}
.algolia-autocomplete .algolia-docsearch-suggestion--title {
  color: #313140;
}
.algolia-autocomplete .algolia-docsearch-suggestion--highlight {
  color: #515164;
}
#nprogress .bar {
  background: #515164;
}
#nprogress .peg {
  -webkit-box-shadow: 0 0 10px #515164, 0 0 5px #515164;
          box-shadow: 0 0 10px #515164, 0 0 5px #515164;
}
#nprogress .spinner-icon {
  border-top-color: #515164;
  border-left-color: #515164;
}
[data-theme='dark'] {
  /* Change autocomplete styles in WebKit */
}
[data-theme='dark'] input:-webkit-autofill,
[data-theme='dark'] input:-webkit-autofill:hover,
[data-theme='dark'] input:-webkit-autofill:focus,
[data-theme='dark'] textarea:-webkit-autofill,
[data-theme='dark'] textarea:-webkit-autofill:hover,
[data-theme='dark'] textarea:-webkit-autofill:focus,
[data-theme='dark'] select:-webkit-autofill,
[data-theme='dark'] select:-webkit-autofill:hover,
[data-theme='dark'] select:-webkit-autofill:focus {
  border: 1px solid #e5e8ed;
  -webkit-text-fill-color: #515164;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}
[data-theme='dark'] #header {
  -webkit-box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.65);
          box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.65);
}
[data-theme='dark'] #search-box input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.3);
}
[data-theme='dark'] #search-box input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.3);
}
[data-theme='dark'] #search-box input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.3);
}
[data-theme='dark'] #search-box input::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.3);
}
[data-theme='dark'] #search-box input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
[data-theme='dark'] .toc-affix .ant-affix {
  background: #fff;
}
[data-theme='dark'] :not(pre) > code[class*='language-'],
[data-theme='dark'] pre[class*='language-'] {
  color: rgba(255, 255, 255, 0.65);
  background: #262626;
}
[data-theme='dark'] .code-box {
  border: 1px solid #f0f0f0;
}
[data-theme='dark'] .code-box .markdown pre {
  margin: 0.5em 0;
  padding: 6px 12px;
}
[data-theme='dark'] .code-box .markdown pre code {
  margin: 0;
  background: #262626;
}
[data-theme='dark'] .code-box-debug {
  border-color: #d3adf7;
}
[data-theme='dark'] .code-box-expand-trigger {
  position: relative;
  margin-left: 12px;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  opacity: 0.45;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
[data-theme='dark'] .code-box-expand-trigger:hover {
  opacity: 0.65;
}
[data-theme='dark'] .code-box-demo {
  border-bottom: 1px solid #f0f0f0;
}
[data-theme='dark'] .code-box-codepen {
  background: transparent url('https://gw.alipayobjects.com/zos/antfincdn/1B3MOCiI5F/OtZslpOjYXijshDERXwc.svg') center / 14px no-repeat;
}
[data-theme='dark'] .code-box-riddle {
  background: transparent url('https://gw.alipayobjects.com/zos/antfincdn/NByOhhT9rO/DlHbxMCyeuyOrqOdbgik.svg') center / 14px no-repeat;
}
[data-theme='dark'] .code-box-codesandbox {
  background: transparent url('https://gw.alipayobjects.com/zos/antfincdn/hNEf2p1ZnS/aaYmtdDyHSCkXyLZVgGK.svg') center / 14px no-repeat;
}
[data-theme='dark'] ul.anticons-list li {
  color: #acacac;
}
[data-theme='dark'] ul.anticons-list li.TwoTone:hover {
  background-color: #15395b;
}
[data-theme='dark'] ul.anticons-list li:hover .anticon {
  color: #fff;
}
[data-theme='dark'] .markdown code,
[data-theme='dark'] .markdown pre,
[data-theme='dark'] .markdown pre code {
  background: #262626;
}
[data-theme='dark'] .markdown.api-container table tbody tr:hover {
  background: #262626;
}
[data-theme='dark'] .markdown code {
  background: rgba(255, 255, 255, 0.08);
}
[data-theme='dark'] .prev-next-nav > a.prev-page .footer-nav-icon-before {
  color: rgba(255, 255, 255, 0.45);
}
[data-theme='dark'] .prev-next-nav > a.prev-page:hover .footer-nav-icon-before {
  color: #515164;
}
[data-theme='dark'] .prev-next-nav > .next-page .footer-nav-icon-after {
  color: rgba(255, 255, 255, 0.45);
}
[data-theme='dark'] .prev-next-nav > .next-page:hover .footer-nav-icon-after {
  color: #515164;
}
[data-theme='dark'] .grid-demo .demo-row,
[data-theme='dark'] [id^='components-grid-demo-'] .demo-row,
[data-theme='dark'] .grid-demo .code-box-demo .demo-row,
[data-theme='dark'] [id^='components-grid-demo-'] .code-box-demo .demo-row {
  background-image: -webkit-gradient(linear, left top, right top, color-stop(4.16666667%, #1d1d1d), color-stop(4.16666667%, transparent), color-stop(8.33333333%, transparent), color-stop(8.33333333%, #1d1d1d), color-stop(12.5%, #1d1d1d), color-stop(12.5%, transparent), color-stop(16.66666667%, transparent), color-stop(16.66666667%, #1d1d1d), color-stop(20.83333333%, #1d1d1d), color-stop(20.83333333%, transparent), color-stop(25%, transparent), color-stop(25%, #1d1d1d), color-stop(29.16666667%, #1d1d1d), color-stop(29.16666667%, transparent), color-stop(33.33333333%, transparent), color-stop(33.33333333%, #1d1d1d), color-stop(37.5%, #1d1d1d), color-stop(37.5%, transparent), color-stop(41.66666667%, transparent), color-stop(41.66666667%, #1d1d1d), color-stop(45.83333333%, #1d1d1d), color-stop(45.83333333%, transparent), color-stop(50%, transparent), color-stop(50%, #1d1d1d), color-stop(54.16666667%, #1d1d1d), color-stop(54.16666667%, transparent), color-stop(58.33333333%, transparent), color-stop(58.33333333%, #1d1d1d), color-stop(62.5%, #1d1d1d), color-stop(62.5%, transparent), color-stop(66.66666667%, transparent), color-stop(66.66666667%, #1d1d1d), color-stop(70.83333333%, #1d1d1d), color-stop(70.83333333%, transparent), color-stop(75%, transparent), color-stop(75%, #1d1d1d), color-stop(79.16666667%, #1d1d1d), color-stop(79.16666667%, transparent), color-stop(83.33333333%, transparent), color-stop(83.33333333%, #1d1d1d), color-stop(87.5%, #1d1d1d), color-stop(87.5%, transparent), color-stop(91.66666667%, transparent), color-stop(91.66666667%, #1d1d1d), color-stop(95.83333333%, #1d1d1d), color-stop(95.83333333%, transparent));
  background-image: linear-gradient(90deg, #1d1d1d 4.16666667%, transparent 4.16666667%, transparent 8.33333333%, #1d1d1d 8.33333333%, #1d1d1d 12.5%, transparent 12.5%, transparent 16.66666667%, #1d1d1d 16.66666667%, #1d1d1d 20.83333333%, transparent 20.83333333%, transparent 25%, #1d1d1d 25%, #1d1d1d 29.16666667%, transparent 29.16666667%, transparent 33.33333333%, #1d1d1d 33.33333333%, #1d1d1d 37.5%, transparent 37.5%, transparent 41.66666667%, #1d1d1d 41.66666667%, #1d1d1d 45.83333333%, transparent 45.83333333%, transparent 50%, #1d1d1d 50%, #1d1d1d 54.16666667%, transparent 54.16666667%, transparent 58.33333333%, #1d1d1d 58.33333333%, #1d1d1d 62.5%, transparent 62.5%, transparent 66.66666667%, #1d1d1d 66.66666667%, #1d1d1d 70.83333333%, transparent 70.83333333%, transparent 75%, #1d1d1d 75%, #1d1d1d 79.16666667%, transparent 79.16666667%, transparent 83.33333333%, #1d1d1d 83.33333333%, #1d1d1d 87.5%, transparent 87.5%, transparent 91.66666667%, #1d1d1d 91.66666667%, #1d1d1d 95.83333333%, transparent 95.83333333%);
}
[data-theme='dark'] .grid-demo .code-box-demo .ant-row > div:not(.gutter-row),
[data-theme='dark'] [id^='components-grid-demo-'] .code-box-demo .ant-row > div:not(.gutter-row) {
  padding: 16px 0;
  background: #028ac8;
}
[data-theme='dark'] .grid-demo .code-box-demo .ant-row > div:not(.gutter-row):nth-child(2n + 1),
[data-theme='dark'] [id^='components-grid-demo-'] .code-box-demo .ant-row > div:not(.gutter-row):nth-child(2n + 1) {
  background: rgba(0, 136, 198, 0.7);
}
[data-theme='dark'] .grid-demo .ant-row .demo-col,
[data-theme='dark'] [id^='components-grid-demo-'] .ant-row .demo-col,
[data-theme='dark'] .grid-demo .code-box-demo .ant-row .demo-col,
[data-theme='dark'] [id^='components-grid-demo-'] .code-box-demo .ant-row .demo-col {
  margin-top: 0;
  margin-bottom: 0;
  padding: 30px 0;
  color: #000;
  font-size: 18px;
  text-align: center;
  border: none;
}
[data-theme='dark'] .grid-demo .ant-row .demo-col-1,
[data-theme='dark'] [id^='components-grid-demo-'] .ant-row .demo-col-1 {
  background: rgba(0, 136, 198, 0.7);
}
[data-theme='dark'] .grid-demo .ant-row .demo-col-3,
[data-theme='dark'] [id^='components-grid-demo-'] .ant-row .demo-col-3,
[data-theme='dark'] .grid-demo .code-box-demo .ant-row .demo-col-3,
[data-theme='dark'] [id^='components-grid-demo-'] .code-box-demo .ant-row .demo-col-3 {
  color: rgba(0, 0, 0, 0.45);
  background: unset;
}
[data-theme='dark'] .grid-demo .ant-row .demo-col-5,
[data-theme='dark'] [id^='components-grid-demo-'] .ant-row .demo-col-5,
[data-theme='dark'] .grid-demo .code-box-demo .ant-row .demo-col-5,
[data-theme='dark'] [id^='components-grid-demo-'] .code-box-demo .ant-row .demo-col-5 {
  color: rgba(0, 0, 0, 0.45);
  background: unset;
}
[data-theme='dark'] .markdown > table th {
  color: rgba(255, 255, 255, 0.65);
  background: #1d1d1d;
}
[data-theme='dark'] .copied-code {
  background: rgba(255, 255, 255, 0.08);
}
[data-theme='dark'] .browser-mockup.with-url::after {
  background-color: #fff;
}
[data-theme='dark'] .browser-mockup {
  border-top: 2em solid #262626;
}
[data-theme='dark'] .browser-mockup::before {
  background-color: #fb4742;
  -webkit-box-shadow: 0 0 0 2px #fb4742, 1.5em 0 0 2px #99bc2e, 3em 0 0 2px #ffba5a;
          box-shadow: 0 0 0 2px #fb4742, 1.5em 0 0 2px #99bc2e, 3em 0 0 2px #ffba5a;
}
[data-theme='dark'] .browser-mockup.with-tab::after {
  border-bottom: 2em solid #fff;
}
[data-theme='dark'] .algolia-autocomplete .ds-dropdown-menu [class^='ds-dataset-'] {
  background: #fff;
}
[data-theme='dark'] .algolia-autocomplete .ds-dropdown-menu [class^='ds-dataset-'] .algolia-docsearch-suggestion {
  background: #fff;
}
[data-theme='dark'] .algolia-autocomplete .ds-dropdown-menu .ds-suggestion.ds-cursor .algolia-docsearch-suggestion:not(.suggestion-layout-simple) .algolia-docsearch-suggestion--content {
  background-color: rgba(255, 255, 255, 0.08);
}
[data-theme='dark'] .algolia-autocomplete .algolia-docsearch-suggestion--category-header {
  color: rgba(255, 255, 255, 0.65);
  border-bottom: 1px solid #f0f0f0;
}
[data-theme='dark'] .algolia-autocomplete .algolia-docsearch-suggestion--subcategory-column::before {
  background: #f0f0f0;
}
[data-theme='dark'] .algolia-autocomplete .algolia-docsearch-suggestion--content::before {
  background: #f0f0f0;
}
[data-theme='dark'] .token.comment,
[data-theme='dark'] .token.quote {
  color: #b6b18b;
}
[data-theme='dark'] .token.property,
[data-theme='dark'] .token.variable,
[data-theme='dark'] .token.template-variable,
[data-theme='dark'] .token.tag,
[data-theme='dark'] .token.number,
[data-theme='dark'] .token.name,
[data-theme='dark'] .token.selector-id,
[data-theme='dark'] .token.selector-class,
[data-theme='dark'] .token.regexp,
[data-theme='dark'] .token.deletion {
  color: #eb3c54;
}
[data-theme='dark'] .token.built_in,
[data-theme='dark'] .token.builtin-name,
[data-theme='dark'] .token.literal,
[data-theme='dark'] .token.type,
[data-theme='dark'] .token.params,
[data-theme='dark'] .token.meta,
[data-theme='dark'] .token.link {
  color: #e7ce56;
}
[data-theme='dark'] .token.attribute {
  color: #ee7c2b;
}
[data-theme='dark'] .token.string,
[data-theme='dark'] .token.symbol,
[data-theme='dark'] .token.bullet,
[data-theme='dark'] .token.addition {
  color: #515164;
}
[data-theme='dark'] .token.title,
[data-theme='dark'] .token.section {
  color: #78bb65;
}
[data-theme='dark'] .token.function,
[data-theme='dark'] .token.keyword,
[data-theme='dark'] .token.selector-tag {
  color: #b45ea4;
}
[data-theme='dark'] .hljs {
  display: block;
  padding: 0.5em;
  overflow-x: auto;
  color: #c0c5ce;
  background: #1c1d21;
}
[data-theme='dark'] .token.emphasis {
  font-style: italic;
}
[data-theme='dark'] .token.strong {
  font-weight: bold;
}
[data-direction='rtl'] .fixed-widgets {
  right: auto;
  left: 32px;
}

/* 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 */
#header {
  position: relative;
  z-index: 10;
  max-width: 100%;
  background: #fff;
  -webkit-box-shadow: 0 2px 8px #f0f1f2;
          box-shadow: 0 2px 8px #f0f1f2;
}
#header a {
  color: #ffffff;
}
#header .menu-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
}
#header .menu-row > * {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  margin: 0 16px 0 0;
}
#header .menu-row > *:last-child {
  margin-right: 40px;
}
#header .ant-row-rtl .menu-row > *:last-child {
  margin-right: 16px;
  margin-left: 40px;
}
#header .header-button {
  color: #515164;
  border-color: #e5e8ed;
}
@media only screen and (max-width: 767.99px) {
  #header {
    text-align: center;
  }
}

/* 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 */
#header {
  position: relative;
  z-index: 10;
  max-width: 100%;
  background: #fff;
  -webkit-box-shadow: 0 2px 8px #f0f1f2;
          box-shadow: 0 2px 8px #f0f1f2;
}
#header a {
  color: #ffffff;
}
#header .menu-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
}
#header .menu-row > * {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  margin: 0 16px 0 0;
}
#header .menu-row > *:last-child {
  margin-right: 40px;
}
#header .ant-row-rtl .menu-row > *:last-child {
  margin-right: 16px;
  margin-left: 40px;
}
#header .header-button {
  color: #515164;
  border-color: #e5e8ed;
}
@media only screen and (max-width: 767.99px) {
  #header {
    text-align: center;
  }
}
#nav {
  height: 100%;
  font-size: 14px;
  font-family: Avenir, 'Noto Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, sans-serif;
  border: 0;
}
#nav.ant-menu-horizontal {
  border-bottom: none;
}
#nav.ant-menu-horizontal > .ant-menu-item,
#nav.ant-menu-horizontal > .ant-menu-submenu {
  min-width: 72px;
  height: 64px;
  line-height: 60px;
  border-top: 2px solid transparent;
}
#nav.ant-menu-horizontal > .ant-menu-item:hover,
#nav.ant-menu-horizontal > .ant-menu-submenu:hover {
  border-top: 2px solid #515164;
  border-bottom: 2px solid transparent;
}
#nav.ant-menu-horizontal .ant-menu-submenu-title .anticon {
  margin: 0;
}
#nav.ant-menu-horizontal > .ant-menu-submenu-open {
  border-top: 2px solid #515164;
  border-bottom: 2px solid transparent;
}
#nav.ant-menu-horizontal > .ant-menu-item-selected {
  border-top: 2px solid #515164;
  border-bottom: 2px solid transparent;
}
#nav.ant-menu-horizontal > .ant-menu-item-selected a {
  color: #515164;
}
#nav > .ant-menu-item,
#nav > .ant-menu-submenu {
  text-align: center;
}
.header-link {
  color: #313140;
}
.ant-menu-item-active .header-link {
  color: #515164;
}
.popover-menu {
  width: 300px;
}
.popover-menu .ant-popover-inner-content {
  padding: 0;
}
.popover-menu .ant-popover-inner-content #nav .ant-menu-item,
.popover-menu .ant-popover-inner-content #nav .ant-menu-submenu {
  text-align: left;
}
.popover-menu .ant-popover-inner-content #nav .ant-menu-item-group-title {
  padding-left: 24px;
}
.popover-menu .ant-popover-inner-content #nav .ant-menu-item-group-list {
  padding: 0 16px;
}
.popover-menu .ant-popover-inner-content #nav .ant-menu-item,
.popover-menu .ant-popover-inner-content #nav a {
  color: #333;
}

/* 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 */
#header {
  position: relative;
  z-index: 10;
  max-width: 100%;
  background: #fff;
  -webkit-box-shadow: 0 2px 8px #f0f1f2;
          box-shadow: 0 2px 8px #f0f1f2;
}
#header a {
  color: #ffffff;
}
#header .menu-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
}
#header .menu-row > * {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  margin: 0 16px 0 0;
}
#header .menu-row > *:last-child {
  margin-right: 40px;
}
#header .ant-row-rtl .menu-row > *:last-child {
  margin-right: 16px;
  margin-left: 40px;
}
#header .header-button {
  color: #515164;
  border-color: #e5e8ed;
}
@media only screen and (max-width: 767.99px) {
  #header {
    text-align: center;
  }
}
#logo {
  height: 64px;
  padding-left: 40px;
  overflow: hidden;
  color: #ffffff;
  font-size: 18px;
  font-family: Avenir, 'Noto Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, sans-serif;
  line-height: 64px;
  white-space: nowrap;
  text-decoration: none;
}
.ant-row-rtl #logo {
  float: right;
  padding-right: 40px;
  padding-left: 0;
}
#logo img {
  position: relative;
  top: -1.5px;
  height: 32px;
  margin-right: 16px;
}
.ant-row-rtl #logo img {
  margin-right: 0;
  margin-left: 16px;
}
@media only screen and (max-width: 767.99px) {
  #logo {
    padding-right: 0;
    padding-left: 0;
  }
}

/* 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 */
#github-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: nowrap;
      flex-flow: nowrap;
  height: auto;
}
#github-btn .gh-btn {
  height: auto;
  padding: 1px 4px;
  background: transparent;
  border: 0;
}
#github-btn .gh-btn .gh-ico {
  width: 20px;
  height: 20px;
  margin: 0;
}
#github-btn .gh-btn .gh-text {
  display: none;
}
#github-btn .gh-count {
  height: auto;
  padding: 4px 8px;
  font-weight: normal;
  background: #fff;
}
#github-btn .gh-count:hover {
  color: #515164;
}
#github-btn.responsive-mode .gh-count {
  display: none !important;
}
.ant-row-rtl #github-btn .gh-count {
  display: none !important;
}

/* 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 */
#header {
  position: relative;
  z-index: 10;
  max-width: 100%;
  background: #fff;
  -webkit-box-shadow: 0 2px 8px #f0f1f2;
          box-shadow: 0 2px 8px #f0f1f2;
}
#header a {
  color: #ffffff;
}
#header .menu-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
}
#header .menu-row > * {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  margin: 0 16px 0 0;
}
#header .menu-row > *:last-child {
  margin-right: 40px;
}
#header .ant-row-rtl .menu-row > *:last-child {
  margin-right: 16px;
  margin-left: 40px;
}
#header .header-button {
  color: #515164;
  border-color: #e5e8ed;
}
@media only screen and (max-width: 767.99px) {
  #header {
    text-align: center;
  }
}
#search-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1 !important;
      -ms-flex: auto !important;
          flex: auto !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 22px;
  margin: 0 auto 0 0 !important;
  padding-left: 16px;
  line-height: 22px;
  white-space: nowrap;
  border-left: 1px solid #f0f0f0;
  -webkit-transition: width 0.5s;
  transition: width 0.5s;
}
.ant-row-rtl #search-box {
  margin: 0 0 0 auto !important;
  padding-right: 16px;
  padding-left: 0;
  border-right: 1px solid #f0f0f0;
  border-left: none;
}
#search-box > * {
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
}
#search-box .anticon {
  position: absolute;
  top: 50%;
  z-index: 1;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  color: #ced4d9;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  pointer-events: none;
}
#search-box input {
  width: 100%;
  max-width: 200px;
  padding-left: 20px;
  font-size: 14px;
  background: transparent;
  border: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}
#search-box input::-webkit-input-placeholder {
  color: #a3b1bf;
}
#search-box input::-moz-placeholder {
  color: #a3b1bf;
}
#search-box input:-ms-input-placeholder {
  color: #a3b1bf;
}
#search-box input::-ms-input-placeholder {
  color: #a3b1bf;
}
#search-box input::placeholder {
  color: #a3b1bf;
}
#search-box.narrow-mode {
  -webkit-box-flex: 0 !important;
      -ms-flex: none !important;
          flex: none !important;
  width: 30px;
}
#search-box.narrow-mode:hover .anticon {
  color: #a3b1bf;
}
#search-box.narrow-mode .anticon {
  right: 0;
  left: auto;
}
.ant-row-rtl #search-box.narrow-mode .anticon {
  right: auto;
  left: 0;
}
#search-box.narrow-mode input {
  max-width: none;
  padding-right: 20px;
  padding-left: 11px;
  cursor: pointer;
}
.ant-row-rtl #search-box.narrow-mode input {
  padding-right: 11px;
  padding-left: 20px;
}
#search-box.narrow-mode.focused {
  width: 500px;
}
#search-box.narrow-mode.focused .anticon {
  color: #ced4d9;
}
#search-box.narrow-mode.focused input {
  cursor: text;
}
.component-select.ant-select-dropdown {
  font-size: 14px;
  border: 0;
  border-radius: 0;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
}
.component-select .ant-select-dropdown-menu {
  max-height: 200px;
}
.component-select .ant-select-dropdown-menu-item {
  border-radius: 0 !important;
}
.component-select .ant-component-decs {
  position: absolute;
  right: 16px;
  color: #aaa;
  font-size: 12px;
}
.ant-row-rtl .component-select .ant-component-decs {
  right: auto;
  left: 16px;
}
@media only screen and (max-width: 767.99px) {
  #search-box {
    display: none;
  }
}

/* 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 */
#resources-page article {
  padding: 0 40px;
}
#resources-page article .title-region {
  margin: 0 -40px;
  padding: 0 40px;
  overflow: hidden;
  background: url(https://gw.alipayobjects.com/mdn/rms_08e378/afts/img/A*y_r7RogIG1wAAAAAAAAAAABkARQnAQ);
  background-size: cover;
}
#resources-page article .title-region h1 {
  max-width: 1208px;
  margin: 56px auto 16px;
  font-size: 38px;
  line-height: 46px;
}
#resources-page article .title-region .markdown {
  max-width: 1208px;
  margin: 0 auto 56px;
  font-weight: 200;
  font-size: 16px;
  line-height: 24px;
}
#resources-page article > .markdown {
  max-width: 1208px;
  margin: 0 auto;
}
#resources-page article > .markdown > p {
  margin-bottom: 56px;
}
#resources-page article h2 {
  margin-top: 124px;
  color: #314659;
  font-weight: lighter;
  font-size: 30px;
  line-height: 38px;
}
#resources-page article h2:first-child {
  margin-top: 88px;
}
#resources-page article h3 {
  margin-top: 56px;
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
}
#resources-page article p {
  color: #697b8c;
}
#resources-page .resource-cards .resource-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  color: inherit;
  list-style: none;
  border: 1px solid #e6e6e6;
  border-radius: 2px;
  cursor: pointer;
  -webkit-transition: -webkit-box-shadow 0.3s;
  transition: -webkit-box-shadow 0.3s;
  transition: box-shadow 0.3s;
  transition: box-shadow 0.3s, -webkit-box-shadow 0.3s;
}
#resources-page .resource-cards .resource-card:hover {
  -webkit-box-shadow: 0px 5px 25px rgba(0, 40, 117, 0.1);
          box-shadow: 0px 5px 25px rgba(0, 40, 117, 0.1);
}
#resources-page .resource-cards .resource-card .resource-card-image {
  width: calc(100% + 2px);
  max-width: none;
  height: 184px;
  margin: -1px -1px 0 -1px;
  -o-object-fit: cover;
     object-fit: cover;
}
#resources-page .resource-cards .resource-card .resource-card-title {
  margin: 16px 20px 8px 20px;
  color: #0d1a26;
  font-size: 20px;
  line-height: 28px;
}
#resources-page .resource-cards .resource-card .resource-card-description {
  margin: 0 20px 20px 20px;
  color: #697b8c;
  font-size: 14px;
  line-height: 22px;
}
#resources-page footer {
  margin-top: 176px;
}
#resources-page footer .rc-footer-container {
  max-width: 1208px;
  margin: 0 auto;
  padding-right: 0;
  padding-left: 0;
}
@media only screen and (max-width: 767.99px) {
  #resources-page article {
    padding: 0 24px;
  }
  #resources-page article .title-region {
    margin: 0 -24px;
    padding: 0 24px;
  }
  #resources-page .ant-col {
    padding-top: 16px !important;
    padding-bottom: 16px !important;
  }
}

/* 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 */
#resources-page article {
  padding: 0 40px;
}
#resources-page article .title-region {
  margin: 0 -40px;
  padding: 0 40px;
  overflow: hidden;
  background: url(https://gw.alipayobjects.com/mdn/rms_08e378/afts/img/A*y_r7RogIG1wAAAAAAAAAAABkARQnAQ);
  background-size: cover;
}
#resources-page article .title-region h1 {
  max-width: 1208px;
  margin: 56px auto 16px;
  font-size: 38px;
  line-height: 46px;
}
#resources-page article .title-region .markdown {
  max-width: 1208px;
  margin: 0 auto 56px;
  font-weight: 200;
  font-size: 16px;
  line-height: 24px;
}
#resources-page article > .markdown {
  max-width: 1208px;
  margin: 0 auto;
}
#resources-page article > .markdown > p {
  margin-bottom: 56px;
}
#resources-page article h2 {
  margin-top: 124px;
  color: #314659;
  font-weight: lighter;
  font-size: 30px;
  line-height: 38px;
}
#resources-page article h2:first-child {
  margin-top: 88px;
}
#resources-page article h3 {
  margin-top: 56px;
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
}
#resources-page article p {
  color: #697b8c;
}
#resources-page .resource-cards .resource-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  color: inherit;
  list-style: none;
  border: 1px solid #e6e6e6;
  border-radius: 2px;
  cursor: pointer;
  -webkit-transition: -webkit-box-shadow 0.3s;
  transition: -webkit-box-shadow 0.3s;
  transition: box-shadow 0.3s;
  transition: box-shadow 0.3s, -webkit-box-shadow 0.3s;
}
#resources-page .resource-cards .resource-card:hover {
  -webkit-box-shadow: 0px 5px 25px rgba(0, 40, 117, 0.1);
          box-shadow: 0px 5px 25px rgba(0, 40, 117, 0.1);
}
#resources-page .resource-cards .resource-card .resource-card-image {
  width: calc(100% + 2px);
  max-width: none;
  height: 184px;
  margin: -1px -1px 0 -1px;
  -o-object-fit: cover;
     object-fit: cover;
}
#resources-page .resource-cards .resource-card .resource-card-title {
  margin: 16px 20px 8px 20px;
  color: #0d1a26;
  font-size: 20px;
  line-height: 28px;
}
#resources-page .resource-cards .resource-card .resource-card-description {
  margin: 0 20px 20px 20px;
  color: #697b8c;
  font-size: 14px;
  line-height: 22px;
}
#resources-page footer {
  margin-top: 176px;
}
#resources-page footer .rc-footer-container {
  max-width: 1208px;
  margin: 0 auto;
  padding-right: 0;
  padding-left: 0;
}
@media only screen and (max-width: 767.99px) {
  #resources-page article {
    padding: 0 24px;
  }
  #resources-page article .title-region {
    margin: 0 -24px;
    padding: 0 24px;
  }
  #resources-page .ant-col {
    padding-top: 16px !important;
    padding-bottom: 16px !important;
  }
}
.resource-affix-tabs {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 11;
  padding: 0 40px;
  background: #fff;
  -webkit-box-shadow: 0px 5px 25px rgba(0, 40, 117, 0.1);
          box-shadow: 0px 5px 25px rgba(0, 40, 117, 0.1);
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  opacity: 0;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, transform 0.3s;
  transition: opacity 0.3s, transform 0.3s, -webkit-transform 0.3s;
}
.resource-affix-tabs-fixed {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}
.resource-affix-tabs .ant-tabs {
  max-width: 1208px;
  margin: 0 auto;
}
.resource-affix-tabs .ant-tabs .ant-tabs-bar {
  margin: 0;
  border-bottom-color: transparent;
}
.resource-affix-tabs .ant-tabs .ant-tabs-bar .ant-tabs-tab {
  padding: 21px 0;
}

