#app {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: row;
  /* padding-bottom: var(--o-spacing-h1); */
  background-color: var(--e-color-bg1);
}

#app > #left {
  position: sticky;
  top: 0;
  left: 0;
  width: 300px;
  min-width: 300px;
  background-color: var(--e-color-kleinblue5);
  overflow: hidden;
  padding-top: 40px;
  height: fit-content;
  min-height: 100vh;
}
#app > #left .left {
  width: 100%;
  padding-left: 40px;
}

#app > #left img {
  height: 35px;
}

#app > #left > ul {
  margin-left: 40px;
  margin-right: 40px;
  margin-top: 53px;
}

#app > #left > ul a {
  color: #ffffff;
}
#app > #left > ul li ~ li {
  line-height: 56px;
}
#app > #left > ul li ~ li::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #fff;
  opacity: 0.1;
}

#app > #left > ul li:nth-child(1) {
  font-size: 18px;
  margin-bottom: 24px;
}

#app > #left > ul li:nth-child(2) {
  font-size: 16px;
}

#app > #left > ul li:nth-child(3) {
  font-size: 16px;
}

#app > #left > ul li:nth-child(4) {
  font-size: 16px;
}

#app > #left > ul li:nth-child(5) {
  font-size: 16px;
}

#app > #left > ul li:nth-child(6) {
  font-size: 16px;
}

#app > #left > ul li:nth-child(7) {
  font-size: 16px;
}

#app > #left > ul li:nth-child(8) {
  font-size: 16px;
}

#app > #right {
  width: calc(100vw - 300px);
  overflow-x: hidden;
  background-color: var(--e-color-bg1);
}

#app > #right > header {
  font-size: 18px;
  height: 60px;
  background-color: #fff;
}

#app > #right > header div #lang {
  border: none;
  cursor: pointer;
}
#app > #right > header div #lang:hover .option {
  display: block;
  left: -14px;
}

#search_header {
  display: flex;
  flex-direction: row;
  background-color: var(--e-color-bg1);
  justify-content: space-between;
  align-items: center;
  padding-left: 120px;
  padding-right: 120px;
}

#search_header div:nth-child(1) {
  width: 48%;
}

#search_header div:nth-child(1) span {
  font-size: 36px;
  line-height: 48px;
  color: var(--e-color-text1);
  font-weight: 300;
}

.search_right {
  width: 48%;
  /* height: 210px; */
  margin-top: 85px;
  margin-bottom: 85px;
  display: flex;
  justify-content: end;
  align-items: center;
}

.search_right img {
  width: 100%;
}

#search-input {
  /* margin-top: 40px; */
  position: relative;
}

#search-input input {
  width: 78%;
  font-size: var(--o-font-size-text);
  height: 48px;
  background: var(--e-color-bg-secondary);
  border: 1px solid transparent;
  padding-left: 40px;
  color: var(--e-color-text1);
}
#search-input input::-webkit-input-placeholder {
  font-size: var(--o-font-size-text);
  line-height: 48px;
  font-weight: 300;
}
#search-input input:focus {
  outline: 1px solid var(--e-color-brand1);
}
.index-result {
  background-color: var(--e-color-bg1);
}
.index-result {
  padding-top: 40px;
}
#search-input i {
  position: absolute;
  left: 8px;
  top: 12px;
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url(../img/search/search.svg) no-repeat 100%/100%;
}
.dark #search-input i {
  background: url(../img/search/search-dark.svg) no-repeat 100%/100%;
}

#search_content {
  padding-left: 120px;
  padding-right: 140px;
  background-color: var(--e-color-bg1);
  display: none;
}

#search_content hr {
  width: 99%;
  height: 1px;
  background-color: #80000000;
}
.hot-document {
  padding-top: 45px;
  padding-left: 120px;
  padding-right: 120px;
  padding-bottom: var(--o-spacing-h1);
}
h1 {
  text-align: left;
  color: var(--e-color-text1);
  font-size: 36px;
  line-height: 48px;
  font-weight: 300;
}

#document_content {
  display: flex;
  flex-direction: row;
  width: 100%;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: var(--o-spacing-h4);
  /* padding-left: 120px;
  padding-right: 120px; */
}

#document_content > div {
  width: 48%;
  padding: var(--o-spacing-h2);
  box-shadow: var(--e-shadow-l2);
  background-color: var(--e-color-bg2);
  cursor: pointer;
}
#document_content > div:hover {
  box-shadow: var(--e-shadow-l2_hover);
}

#document_content a {
  color: var(--e-color-text1);
  font-size: 18px;
  line-height: 26px;
}

#document_content div:nth-child(3),
#document_content div:nth-child(4) {
  margin-top: var(--o-spacing-h4);
  font-size: var(--o-font-size-text);
  line-height: var(--o-line-height-text);
}

/* #document_content div:nth-child(4) {
  margin-top: var(--o-spacing-h4);
} */

/* #footer {
  display: flex;
  flex-direction: row;
  margin-top: 200px;
  background-color: var(--e-color-bg2);
  flex-wrap: wrap;
  overflow: hidden;
  justify-content: space-between;
  padding-left: 120px;
  padding-right: 120px;
}
#footer .atom-img, .h5_footer .atom-img {
  width: 274px;
  height: 58px;
  background-image: url(../img/common/atom.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.h5_footer .atom-img{
  width: 189px;
  height: 40px;
  margin: 0 auto;
}
.h5_footer .footer-logo{
  margin: 0 auto;
}
.dark #footer .atom-img,.dark .h5_footer .atom-img {
  background-image: url(../img/common/atom-logo-dark.svg);
}
#footer .footer-logo,.h5_footer .footer-logo {
  width: 134px;
  height: 28px;
  background-image: url(../img/common/footerLogo.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.dark #footer .footer-logo,.dark .h5_footer .footer-logo {
  background-image: url(../img/common/footer-logo-dark.png);
}
#footer .atom p {
  margin-top: 10px;
}
#footer h3 {
  color: var(--e-color-text1);
}
.footer-logo {
  width: 160px;
  height: 33px;
}
.light .footer-logo {
  background-image: url(/img/common/footer-logo.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.dark .footer-logo {
  background-image: url(/img/common/footer-logo-dark.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
#footer > div {
  margin: 60px 0;
}
#footer div:nth-child(1) {
  text-align: left;
}
#footer #footer div:nth-child(1) p {
  margin-top: 10px;
  font-size: 16px;
  max-width: 470px;
}

#footer div:nth-child(1) img {
  width: 274px;
  height: 58px;
}

#footer div:nth-child(3) {
  text-align: center;
}

#footer div:nth-child(3) img {
  width: 50%;
}

#footer div:nth-child(3) p {
  color: var(--e-color-text4);
  margin-top: 10px;
}

#footer div:nth-child(2) p:nth-child(2) {
  color: var(--e-color-text4);
  margin-top: 16px;
}

#footer div:nth-child(2) p:nth-child(3) {
  color: var(--e-color-text4);
  margin-top: 23px;
}
#footer div p a,
#footer div p {
  color: var(--e-color-text4);
  font-size: 12px;
}
#footer > div:nth-last-of-type(1) img {
  width: 78px;
  height: 78px;
} */
.app-mobile {
  display: none;
}

/* .h5_footer {
  display: none !important;
} */

.hot_version {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center;
  width: 100% !important;
  padding: 0px !important;
  background-color: #1a000000 !important;
  box-shadow: none !important;
}

#document_content .hot-docs-desc {
  color: var(--e-color-text1);
  margin-top: var(--o-spacing-h5);
  font-size: var(--o-font-size-text);
  line-height: var(--o-line-height-text);
}

.hot_version > span {
  background: linear-gradient(225deg, #feb32a 0%, #f6d365 100%);
  line-height: var(--o-line-height-text);
  padding: 0 8px;
  font-size: var(--o-font-size-tip);
}
.hot_version p {
  color: var(--e-color-text1);
  font-size: var(--o-font-size-h7);
  line-height: var(--o-line-height-text);
}
.nav-menu {
  box-shadow: var(--e-shadow-l1);
}
@media screen and (max-width: 1100px) {
  .h5_footer {
    display: block !important;
    background-color: var(--e-color-bg2);
  }
  .h5-nav-menu {
    width: 100vw;
    height: 48px;
    padding: 12px 16px;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9;
    background-color: var(--e-color-bg2);
  }
  .app-mobile .h5_content {
    background-color: var(--e-color-bg1);
    padding-bottom: 40px;
  }
  .h5-nav-menu .h5-logo {
    width: 137px;
    height: 23px;
    background: url(../img/common/logo-mobile.png) no-repeat 100%/100%;
  }
  .dark .h5-nav-menu .h5-logo {
    background: url(../img/common/logo-pc.png) no-repeat 100%/100%;
  }
  #app {
    display: none !important;
  }

  .app-mobile {
    display: block;
    position: relative;
  }

  .searcher {
    display: none;
    z-index: 2000;
    position: fixed;
    overflow: scroll;
    background-color: #fff;
    top: 48px;
    max-height: 80vh;
    width: 100%;
  }

  .h5_search_container {
    display: flex;
    margin-top: 80px;
    width: 315px;
    flex-direction: row;
    justify-content: space-between;
  }
  .h5_search_container input {
    width: 256px;
    height: 32px;
    background: var(--e-color-bg2);
    border-radius: 4px;
    padding: 9px 12px;
    font-size: 12px;
    font-weight: 400;
    color: var(--e-color-text1);
    line-height: 14px;
    border: 1px solid rgba(0, 0, 0, 0.3);
  }

  .h5_search_container input:focus {
    outline: 0;
  }

  .h5_search_container .h5_search_btn {
    width: 44px;
    height: 32px;
    background: var(--e-color-brand1);
    border-radius: 4px;
    font-size: 12px;
    color: #ffffff;
    line-height: 32px;
    text-align: center;
  }

  .container {
    height: 70px;
    margin: 0 auto;
  }

  .h5_left span {
    position: relative;
    left: -30px;
    font-size: 16px;
  }

  .h5_left a img {
    width: 154px;
    height: auto;
  }

  .h5-right .icon-lang {
    margin-right: 33px;
  }

  .app-mobile > img {
    margin-top: 90px;
  }

  .h5_versions {
    padding-left: 16px;
    padding-right: 16px;
    margin-top: 40px;
    text-align: center;
  }

  .h5_versions > span {
    font-weight: 300;
    font-size: 16px;
    color: var(--e-color-text1);
  }

  #h5_versions {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
  }

  #h5_versions div {
    width: 100%;
    height: 28px;
    box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.1);
    font-size: 14px;
    font-weight: normal;
    background-color: var(--e-color-brand1);
    line-height: 28px;
    text-align: center;
  }
  #h5_versions div a {
    display: inline-block;
    width: 100%;
    height: 100%;
    color: #fff;
    font-weight: 400;
  }

  h3 {
    margin-top: 40px;
    font-size: 16px;
    font-weight: 300;
    text-align: center;
    color: var(--e-color-text1);
  }

  .hot_documentation {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
    padding: 0 16px;
  }

  .hot_documentation div {
    width: 100%;
    height: auto;
    padding: 12px;
    text-align: left;
    margin-top: 16px;
    background: var(--e-color-bg2);
    box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.1);
  }
  .hot_documentation div .hot_version {
    margin-top: 0;
    margin-bottom: 4px;
  }
  .hot_documentation div .hot_version p {
    color: var(--e-color-text1);
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
    line-height: var(--o-line-height-text);
  }
  .hot_documentation div .hot_version span {
    margin-top: 0;
    font-size: 12px;
    font-weight: 400;
    height: 14px;
    line-height: 14px;
    padding: 0 4px;
    color: #000000;
  }
  .hot_documentation div a {
    font-size: 16px;
    font-weight: normal;
    color: var(--e-color-brand1);
    line-height: 26px;
  }

  .hot_documentation > div > span {
    font-size: 12px;
    font-weight: normal;
    color: var(--e-color-text4);
    line-height: 18px;
  }

  .h5_community {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0 16px;
    margin-top: 20px;
  }

  .h5_community div {
    height: 40px;
    text-align: center;
    background: #fbfbfb;
    box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding-top: 8px;
    margin-bottom: 30px;
  }

  .h5_community div a {
    font-size: 14px;
    font-weight: normal;
    color: var(--e-color-brand1);
    line-height: 24px;
  }

  /* .h5_footer {
    margin-top: 40px !important;
  } */

  .h5-search {
    width: 100vw;
    height: 48px;
    padding: 12px 16px;
    background: var(--e-color-bg2);
    position: fixed;
    left: 0;
    top: 0;
    font-size: 14px;
  }

  .h5-search .icon-search {
    position: absolute;
    left: 24px;
    top: 16px;
    display: inline-block;
    width: 16px;
    height: 16px;
    background: url(../img/search/search.svg) no-repeat 100%/100%;
  }
  .h5-search .icon-clear {
    position: absolute;
    right: 72px;
    top: 16px;
    display: none;
    width: 16px;
    height: 16px;
    background: url(../img/common/icon-close-light.svg) no-repeat 100%/100%;
  }
  .dark .h5-search .icon-clear {
    background: url(../img/common/icon-close-dark.svg) no-repeat 100%/100%;
  }

  .dark .h5-search .icon-search {
    background: url(../img/search/search-dark.svg) no-repeat 100%/100%;
  }
  .h5-search .cancel-btn {
    color: var(--e-color-text1);
    line-height: 24px;
  }

  .search-result {
    padding: 0 16px;
    padding-bottom: 16px;
  }

  /* .h5_content {
    margin-top: 60px;
  } */
  .h5_content .h5_banner {
    width: 100%;
    height: 126px;
    background-image: url("/img/common/banner-bg.png");
    background-size: cover;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
    margin-top: 48px;
  }
  .h5_content .h5_banner .banner-text {
    position: relative;
    width: 103px;
    height: 28px;
  }
  .h5_content .h5_banner .banner-text .title-bg {
    color: #2e4fb0;
    font-size: 20px;
    position: absolute;
    opacity: 0.8;
    z-index: 1;
  }
  .h5_content .h5_banner .banner-text .title {
    color: #fff;
    font-size: 20px;
    line-height: 28px;
    position: absolute;
    top: 8px;
    z-index: 2;
  }
  .h5_content .h5_banner .banner-iii {
    height: 94px;
  }
  .mask-mobile {
    background-color: rgba(0, 0, 0, 0.4);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
  }

  .hot_documentation {
    margin-top: 0;
  }
}

.index-result {
  max-height: unset !important;
}
.app-mobile .h5_nav {
  position: fixed;
  left: -61%;
  top: 0;
  width: 60%;
  height: 100vh;
  z-index: 99999;
  background-color: var(--e-color-bg2);
  transition: all 0.5s;
}
.app-mobile .h5_nav_show {
  left: 0;
}
.app-mobile .select-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.app-mobile .select-box span {
  margin-left: 16px;
  font-size: 14px;
}
.app-mobile .select-box .icon-down {
  width: 16px;
  height: 16px;
  position: relative;
  right: 42px;
}
.select-box {
  padding: 16px 0 8px 0;
}
.select-box p {
  margin-left: 16px;
  color: var(--e-color-text1);
}
.h5_nav .option {
  width: 100%;
  background-color: var(--e-color-bg1);
  transition: all 0.2s;
  overflow: hidden;
  height: 0;
}
.h5_nav .option-show {
  height: 432px;
}
.h5_nav .option a {
  display: block;
  padding: 8px 16px;
  font-size: 14px;
  line-height: 22px;
  color: var(--e-color-text1);
}
.h5_nav .option a:nth-of-type(1) {
  padding-top: 16px;
}
.h5_nav .option a:nth-last-of-type(1) {
  padding-bottom: 16px;
}
.h5_nav .h5-logo {
  padding: 22px 0 0 16px;
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.h5_nav .h5-logo .logo-img {
  width: 137px;
  height: 23px;
  background: url(../img/common/logo-mobile.png) no-repeat 100%/100%;
}
.dark .h5_nav .h5-logo .logo-img {
  background: url(../img/common/logo-pc.png) no-repeat 100%/100%;
}
.h5_nav .h5-logo .icon-close {
  width: 24px;
  height: 24px;
  margin-right: 16px;
  background: url(../img/common/icon-close-light.svg) no-repeat 100%/100%;
  cursor: pointer;
}
.dark .h5_nav .h5-logo .icon-close {
  background: url(../img/common/icon-close-dark.svg) no-repeat 100%/100%;
}
.h5_nav .icon-servision {
  width: 16px;
  height: 16px;
  transform: rotateZ(0deg);
  background: url(../img/common/icon-chevron-right.svg) no-repeat 100%/100%;
  cursor: pointer;
}
.dark .h5_nav .icon-servision {
  background: url(../img/common/icon-chevron-right-dark.svg) no-repeat 100%/100%;
}
.h5_nav .open {
  transform: rotateZ(-90deg);
}
