.wiki-search-page .sticky-page-top {
  position: sticky;
  z-index: 2;
  background-color: #ffffff;
}

.wiki-search-page .search-box .search-input-box {
  position: relative;
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 1px solid #ededed;
  border-radius: 6px;
  margin: 24px 0;
}

.wiki-search-page .search-box .search-input-box i {
  color: #b3b3b3;
  font-size: 26px;
}

.wiki-search-page .search-box .search-input-box i.search {
  cursor: pointer;
}

.wiki-search-page .search-box .search-input-box i.close {
  font-size: 20px;
  margin-left: auto;
}

.wiki-search-page .search-box .search-input-box input,
.wiki-search-page .search-box .search-input-box input::placeholder {
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
  color: #444444;
  display: block;
  text-align: left;
  padding: 24px 0;
}

.wiki-search-page .search-box .active-search-box>.search-result-box {
  top: -24px;
}

.wiki-search-page .result-data {
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
  padding-bottom: 10px;
  border-bottom: 1px solid #d8d8d8;
}

.wiki-search-page .result-data span {
  font-size: 14px;
  font-weight: normal;
  line-height: 22px;
  color: #666666;
}

.wiki-search-page .result-data>div {
  position: relative;
  display: flex;
  align-items: center;
  color: #666666;
  font-size: 14px;
  font-weight: normal;
}

.wiki-search-page .result-data>div>.sort-btn {
  display: block;
  background: #f8f8f8;
  padding: 3px 27px 3px 10px;
  border-radius: 4px;
  cursor: pointer;
  margin-left: 14px;
  border: none;
  font-size: 14px;
  font-weight: normal;
  line-height: 22px;
  color: #666666;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.wiki-search-page .result-data>div>.sort-btn i {
  font-size: 8px;
  color: #999999;
  position: absolute;
  right: 10px;
}

.wiki-search-page .result-data>div>.sort-btn i.active {
  color: #cb5c00;
}

.wiki-search-page .result-data>div>.sort-btn i:first-of-type {
  top: -1px;
}

.wiki-search-page .result-data>div>.sort-btn i:last-of-type {
  top: 7px;
}

.wiki-search-page h1 {
  font-family: Poppins;
  font-size: 36px;
  font-weight: bold;
  color: #767676;
  margin: 24px 0;
}

.wiki-search-page .result-list>div {
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wiki-search-page .result-list>div>span {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #444444;
  background: #f8f8f8;
  padding: 5px 12px;
  text-transform: capitalize;
}

.wiki-search-page .result-list>div::after {
  content: '';
  height: 1px;
  background-color: #d8d8d8;
  flex: 1;
  margin-left: 10px;
}

.wiki-search-page .result-list>ul {
  margin-top: 24px;
}

.wiki-search-page .result-list>ul a {
  position: relative;
  display: block;
}

.wiki-search-page .result-list>ul li {
  position: relative;
  margin-bottom: 20px;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #666666;
  text-indent: 1em;
}

.wiki-search-page .result-list>ul li:hover {
  color: #cb5c00;
}

.wiki-search-page .result-list>ul li::before {
  content: '';
  display: block;
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 5px;
  top: 8px;
  left: 0;
  background: #d8d8d8;
}

.wiki-search-page .result-list>ul li:hover::before {
  background: #cb5c00;
}

.wiki-search-page .result-list>ul li>b {
  font-weight: 500;
  color: #333333;
}

.wiki-search-page .result-list>ul li em {
  color: #cb5c00;
  font-style: normal;
}

.wiki-search-page .result-list>ul li:hover>b {
  color: #cb5c00;
}

.wiki-search-page .result-list>button {
  height: 22px;
  padding: 0 20px;
  color: #b3b3b3;
  margin-bottom: 24px;
  font-size: 14px;
}

.wiki-search-page .result-list>button:hover {
  color: #666666;
}

.wiki-search-page .result-list>button i {
  font-weight: bold;
  margin-left: 4px;
  font-size: 12px;
}

.wiki-index-page section.index-section {
  margin: 68px 0;
}

.wiki-index-page section.index-section h1 {
  text-align: center;
  font-family: Poppins;
  font-size: 36px;
  color: #808080;
  margin-bottom: 18px;
}

.wiki-index-page section.index-section h1~p {
  text-align: center;
  font-size: 16px;
  font-weight: normal;
  line-height: 30px;
  color: #666666;
  margin-bottom: 40px;
}

.wiki-index-page section.index-section h2 {
  text-align: center;
  font-family: Poppins;
  font-size: 36px;
  color: #808080;
  margin-bottom: 37px;
}

.wiki-index-page section.index-section .grid-text-icon-column {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
}

@media screen and (max-width: 1920px) {
  .wiki-index-page section.index-section .grid-text-icon-column {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 1280px) {
  .wiki-index-page section.index-section .grid-text-icon-column {
    grid-template-columns: repeat(2, 1fr);
  }
}

.wiki-index-page section.index-section .grid-text-column {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

@media screen and (max-width: 1280px) {
  .wiki-index-page section.index-section .grid-text-column {
    grid-template-columns: repeat(2, 1fr);
  }
}

.wiki-index-page section.index-section>ul>a {
  display: block;
  position: relative;
}

.wiki-index-page section.index-section>ul>a:hover::before {
  content: '';
  display: block;
  position: absolute;
  left: -5px;
  right: -5px;
  top: -5px;
  bottom: 0;
  background: linear-gradient(180deg, #eaeaea 0%, rgba(216, 216, 216, 0) 100%);
  filter: blur(24px);
}

.wiki-index-page section.index-section>ul>a>div {
  position: relative;
  background: #ffffff;
  min-height: 76px;
  padding: 20px 24px;
  border-radius: 4px;
  border: 1px solid #eaeaea;
}

.wiki-index-page section.index-section>ul>a:hover>div {
  border: 1px solid transparent;
  z-index: 1;
  cursor: pointer;
}

.wiki-index-page section.index-section>ul>a span {
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  color: #000000;
}

.wiki-index-page section.index-section>ul>a i {
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  display: block;
  color: #cb5c00;
  font-style: normal;
  margin-top: 20px;
  margin-bottom: 5px;
}

.wiki-index-page section.index-section>ul>a img {
  position: absolute;
  right: 24px;
  bottom: 20px;
}

.wiki-index-page section.index-section>ul>a img:nth-of-type(1) {
  display: none;
}

.wiki-index-page section.index-section>ul>a:hover img:nth-of-type(1) {
  display: block;
}

.wiki-index-page section.index-section>ul>a img:nth-of-type(2) {
  display: block;
}

.wiki-index-page section.index-section>ul>a:hover img:nth-of-type(2) {
  display: none;
}

.wiki-first-category-page h1 {
  font-family: Poppins;
  font-size: 36px;
  color: #767676;
  margin: 40px 0 16px;
}

.wiki-first-category-page .desc {
  font-size: 16px;
  font-weight: normal;
  line-height: 30px;
  color: #3d3d3d;
  margin-bottom: 24px;
}

.wiki-first-category-page .category-select-tab {
  display: flex;
  align-items: center;
  box-shadow: 0px 1px 0px 0px rgba(51, 51, 51, 0.1);
  flex-wrap: wrap;
}

.wiki-first-category-page .category-select-tab li {
  position: relative;
  padding-bottom: 10px;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  margin-right: 42px;
  cursor: pointer;
}

.wiki-first-category-page .category-select-tab li::after {
  content: '';
  display: block;
  position: absolute;
  width: 0;
  height: 2px;
  left: 50%;
  bottom: -2px;
  transform: translateX(-50%);
  transition: width 0.3s;
}

.wiki-first-category-page .category-select-tab li.selected,
.wiki-first-category-page .category-select-tab li:hover {
  color: #cb5c00;
}

.wiki-first-category-page .category-select-tab li.selected::after,
.wiki-first-category-page .category-select-tab li:hover::after {
  width: 44px;
  background-color: #cb5c00;
}

.wiki-first-category-page .category-select-tab .filter-switch {
  margin-left: auto;
  margin-bottom: 10px;
}

.wiki-first-category-page .result-list>ul {
  margin-top: 24px;
}

.wiki-first-category-page .result-list>ul a {
  position: relative;
  display: block;
}

.result-list>ul li {
  position: relative;
  margin-bottom: 20px;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #666666;
  text-indent: 1em;
}

.wiki-first-category-page .result-list>ul li:hover {
  color: #cb5c00;
}

.wiki-first-category-page .result-list>ul li::before {
  content: '';
  display: block;
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 5px;
  top: 8px;
  left: 0;
  background: #d8d8d8;
}

.wiki-first-category-page .result-list>ul li:hover::before {
  background: #cb5c00;
}

.wiki-first-category-page .result-list>ul li>b {
  font-weight: 500;
  color: #333333;
}

.wiki-first-category-page .result-list>ul li:hover>b {
  color: #cb5c00;
}

.wiki-first-category-page .sort-menu .selected-filter-box {
  display: flex;
  align-items: center;
  padding: 10px 12px;
  height: 54px;
  border: 1px solid #eaeaea;
  border-radius: 4px;
}

.wiki-first-category-page .sort-menu .selected-filter-box>i.iconfont {
  font-size: 20px;
  color: #767676;
  margin-right: 14px;
}

.wiki-first-category-page .sort-menu .selected-filter-box>span {
  display: flex;
  flex-direction: row;
  background: #444444;
  border-radius: 90px;
  padding: 2px 12px;
  margin-right: 14px;
  font-size: 16px;
  font-weight: normal;
  line-height: 30px;
  color: #ffffff;
}

.wiki-first-category-page .sort-menu .selected-filter-box>span>i {
  color: #aaaaaa;
  font-size: 18px;
  margin-left: 8px;
  cursor: pointer;
}

.wiki-first-category-page .sort-menu .selected-filter-box>input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 14px;
  font-weight: normal;
  line-height: 22px;
}

.wiki-first-category-page .sort-menu .selected-filter-box>input::placeholder {
  color: #999999;
}

.wiki-first-category-page .sort-menu .selected-filter-box>i.clear {
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  color: #cb5c00;
  font-style: normal;
  cursor: pointer;
}

.wiki-second-page .category-select-tab {
  display: flex;
  align-items: center;
  box-shadow: 0px 1px 0px 0px rgba(51, 51, 51, 0.1);
}

.wiki-second-page .category-select-tab li {
  position: relative;
  padding-bottom: 10px;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  margin-right: 56px;
  cursor: pointer;
}

.wiki-second-page .category-select-tab li::after {
  content: '';
  display: block;
  position: absolute;
  width: 0;
  height: 2px;
  left: 50%;
  bottom: -2px;
  transform: translateX(-50%);
  transition: width 0.3s;
}

.wiki-second-page .category-select-tab li.selected,
.wiki-second-page .category-select-tab li:hover {
  color: #cb5c00;
}

.wiki-second-page .category-select-tab li.selected::after,
.wiki-second-page .category-select-tab li:hover::after {
  width: 44px;
  background-color: #cb5c00;
}

.wiki-second-page .category-select-tab .filter-switch {
  margin-left: auto;
  margin-bottom: 10px;
}

.wiki-second-page .wiki-introduction {
  display: flex;
  margin: 40px 0;
}

.wiki-second-page .wiki-introduction .text {
  flex: 1;
  margin-right: 10px;
}

.wiki-second-page .wiki-introduction .text h1 {
  font-family: Poppins;
  font-size: 36px;
  font-weight: bold;
  color: #1a1a1a;
  margin-bottom: 22px;
}

.wiki-second-page .wiki-introduction .text>p {
  font-size: 14px;
  font-weight: normal;
  line-height: 22px;
  color: #999999;
}

.wiki-second-page .wiki-introduction .text .desc p {
  font-size: 16px;
  font-weight: normal;
  line-height: 30px;
  color: #666666;
}

.wiki-second-page .wiki-introduction .view {
  width: 360px;
  text-align: center;
}

.wiki-second-page .wiki-introduction .view img {
  height: 240px;
  display: block;
  margin-bottom: 24px;
}

.wiki-second-page .wiki-introduction .view button {
  border: none;
  outline: none;
  background-color: #f0f0f0;
  padding: 10px 18px 10px 54px;
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  border-radius: 106px;
  position: relative;
  color: #1a1a1a;
  cursor: pointer;
}

.wiki-second-page .wiki-introduction .view button i {
  position: absolute;
  top: 10px;
  left: 18px;
  color: #000000;
  font-size: 26px;
  font-weight: 400;
}

.wiki-second-page .wiki-introduction .view button:hover {
  background-color: #000000;
  color: #ffffff;
}

.wiki-second-page .wiki-introduction .view button:hover i {
  color: #ffffff;
}

.wiki-second-page .download-resources {
  box-shadow: 0px -6px 16px 0px rgba(204, 204, 204, 0.2);
  padding: 30px 40px;
}

.wiki-second-page .download-resources>p {
  color: #cb5c00;
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.wiki-second-page .download-resources ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.wiki-second-page .download-resources ul a {
  font-size: 18px;
  font-weight: normal;
  line-height: 28px;
  color: #444444;
  padding: 10px 10px 10px 34px;
  position: relative;
  margin-right: 8px;
  white-space: nowrap;
}

.wiki-second-page .download-resources ul a i {
  position: absolute;
  top: 9px;
  left: -2px;
  font-size: 26px;
}

.wiki-second-page .download-resources ul a:hover {
  color: #000000;
}

.wiki-second-page .category-select-tab {
  margin-top: 40px;
}

.wiki-second-page .wiki-content {
  margin: 24px 0 40px;
}

.wiki-second-page .wiki-content.docs a,
.wiki-second-page .wiki-content.tutorials a {
  display: block;
  padding: 10px;
  margin-bottom: 24px;
  border-bottom: 1px solid #eaeaea;
}

.wiki-second-page .wiki-content.docs a.reference,
.wiki-second-page .wiki-content.tutorials a.reference {
  background-color: #f6f6f6;
}

.wiki-second-page .wiki-content.docs a .wiki-title,
.wiki-second-page .wiki-content.tutorials a .wiki-title {
  color: #3d3d3d;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 12px;
}

.wiki-second-page .wiki-content.docs a.first-link .wiki-title,
.wiki-second-page .wiki-content.tutorials a.first-link .wiki-title {
  color: #000000;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 12px;
}

.wiki-second-page .wiki-content.docs a.first-link,
.wiki-second-page .wiki-content.tutorials a.first-link {
  border-bottom: none;
  margin-bottom: 2px;
}

.wiki-second-page .wiki-content.docs a.second-link,
.wiki-second-page .wiki-content.tutorials a.second-link {
  margin-left: 30px;
}

.wiki-second-page .wiki-content.docs a .wiki-desc,
.wiki-second-page .wiki-content.tutorials a .wiki-desc {
  font-size: 16px;
  font-weight: normal;
  line-height: 30px;
  color: #666666;
}

.wiki-second-page .wiki-content.docs a:hover,
.wiki-second-page .wiki-content.tutorials a:hover {
  box-shadow: 0px -6px 16px 0px rgba(204, 204, 204, 0.2);
}

.wiki-second-page .wiki-content.docs a:hover .wiki-title,
.wiki-second-page .wiki-content.tutorials a:hover .wiki-title {
  color: #cb5c00;
}

.wiki-second-page .wiki-content.docs a span.new {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: #3d3d3d;
  padding: 0 10px;
  border-radius: 4px;
  background: #ffe07c;
  margin-left: 8px;
}

.wiki-second-page .wiki-content.tech_specs h2,
.wiki-second-page .wiki-content.tech_specs h3,
.wiki-second-page .wiki-content.tech_specs h4 {
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  color: #444444;
  margin: 24px 0;
}

.wiki-second-page .wiki-content.tech_specs p {
  font-size: 16px;
  font-weight: normal;
  line-height: 30px;
  color: #666666;
  margin: 16px 0;
}

.wiki-second-page .wiki-content.tech_specs a {
  color: #178ca4;
}

.wiki-second-page .wiki-content.tech_specs b {
  font-weight: 600;
}

.wiki-second-page .wiki-content.tech_specs .table-box {
  width: 100%;
  overflow-x: auto;
  margin: 24px auto;
}

.wiki-second-page .wiki-content.tech_specs ul {
  margin: 24px 0;
}

.wiki-second-page .wiki-content.tech_specs ul ul {
  margin: 4px 0;
}

.wiki-second-page .wiki-content.tech_specs li {
  position: relative;
  font-size: 16px;
  font-weight: normal;
  line-height: 38px;
  color: #666666;
  padding-left: 16px;
  margin: 16px 0;
}

.wiki-second-page .wiki-content.tech_specs li::before {
  content: '';
  position: absolute;
  background-color: #666666;
  width: 4px;
  height: 4px;
  border-radius: 4px;
  top: 11px;
  left: 0;
}

/* 二级无序列表 */
.wiki-second-page .wiki-content.tech_specs ul>li>ul>li {
  position: relative;
  text-indent: 1.8em;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #444444;
}

.wiki-second-page .wiki-content.tech_specs ul>li>ul>li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 2px;
  border: 1px solid #444444;
  background: #ffffff;
  position: absolute;
  top: 10px;
  left: 15px;
}

/* 三级无序列表 */
.wiki-second-page .wiki-content.tech_specs ul>li>ul>li>ul>li {
  position: relative;
  text-indent: 2.7em;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #666666;
}

.wiki-second-page .wiki-content.tech_specs ul>li>ul>li>ul>li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 0;
  border: 1px solid #999999;
  background-color: #999999;
  position: absolute;
  top: 10px;
  left: 30px;
}

.wiki-second-page .wiki-content.tech_specs img {
  max-width: min(650px, 100%);
  margin: 0 auto;
  display: block;
}

.wiki-second-page .wiki-content.tech_specs table {
  margin: 24px auto;
  font-size: 14px;
  line-height: 20px;
  color: #3d3d3d;
  text-align: left;
  border-width: 1px 0px 0px 1px;
  border-style: solid;
  border-color: rgba(223, 223, 223, 0.8);
  width: 100%;
}

.wiki-second-page .wiki-content.tech_specs th {
  border-width: 0px 1px 1px 0px;
  border-style: solid;
  border-color: rgba(223, 223, 223, 0.8);
  padding: 8px 12px;
}

.wiki-second-page .wiki-content.tech_specs td {
  border-width: 0px 1px 1px 0px;
  border-style: solid;
  border-color: rgba(223, 223, 223, 0.8);
  padding: 8px 12px;
}

.wiki-second-page .wiki-content.tech_specs blockquote {
  position: relative;
  background: #f8f8f8;
  padding: 10px 20px 10px 85px;
  margin: 16px 0;
  font-size: 16px;
  font-weight: normal;
  line-height: 30px;
  color: #333333;
}

.wiki-second-page .wiki-content.tech_specs blockquote::before {
  content: 'Tips:';
  display: block;
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  color: #444444;
}

.wiki-second-page .wiki-content.tech_specs blockquote * {
  overflow-wrap: break-word;
}

.wiki-second-page .wiki-content .project-card {
  margin-bottom: 28px;
}

.wiki-second-page .wiki-content .loadmore {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  color: #666666;
  cursor: pointer;
}

.wiki-second-page .wiki-content .loadmore i {
  position: relative;
  top: 1px;
  left: 4px;
}

.wiki-second-page .wiki-content .loadmore:hover {
  color: #333333;
}

.wiki-second-page .wiki-content.certifications>div {
  display: flex;
  flex-wrap: wrap;
}

.wiki-second-page .wiki-content.certifications li {
  position: relative;
}

.wiki-second-page .wiki-content.certifications li>span {
  font-size: 16px;
  font-weight: normal;
  line-height: 30px;
  color: #3d3d3d;
  margin-right: 24px;
  margin-bottom: 24px;
  border: 1px solid #cccccc;
  padding: 8px 20px;
  display: block;
  position: relative;
}

.wiki-second-page .wiki-content.certifications li>span a {
  font-size: 16px;
  font-weight: 500;
  line-height: 30px;
  color: #ffffff;
  background: #444444;
  border: 1px solid #444444;
  display: none;
  position: absolute;
  inset: 0;
}

.wiki-second-page .wiki-content.certifications li>span a i {
  margin-left: 4px;
  font-size: 18px;
}

.wiki-second-page .wiki-content.certifications li>span:hover a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.wiki-second-page .faq>p:first-child {
  color: #444444;
  font-size: 28px;
  font-weight: 500;
  line-height: 38px;
  margin-bottom: 24px;
}

.wiki-second-page .faq>p:last-child {
  text-align: center;
  font-size: 16px;
  font-weight: normal;
  line-height: 30px;
}

.wiki-second-page .faq a,
.wiki-second-page .faq a * {
  color: #178ca4;
}

.wiki-second-page .faq .faq-content h1,
.wiki-second-page .faq .faq-content h2,
.wiki-second-page .faq .faq-content h3,
.wiki-second-page .faq .faq-content h4,
.wiki-second-page .faq .faq-content h5,
.wiki-second-page .faq .faq-content h6,
.wiki-second-page .faq .faq-content p {
  margin: 5px 0;
}

.wiki-second-page .faq .faq-content li {
  background: #fafafa;
  padding: 20px;
  margin-bottom: 10px;
}

.wiki-second-page .faq .question {
  cursor: pointer;
  display: flex;
}

.wiki-second-page .faq .question p,
.wiki-second-page .faq .question span {
  color: #000000;
  margin: 5px 0;
}

.wiki-second-page .faq .question i.iconfont {
  color: #666666;
  position: relative;
  top: 16px;
  font-size: 14px;
  align-self: flex-start;
  transition: all 0.3s;
  margin-left: auto;
}

.wiki-second-page .faq .answer {
  margin-top: 10px;
  display: none;
}

.wiki-second-page .faq .expand .question i {
  transform: rotate(180deg);
}

.wiki-second-page .faq .expand .answer {
  display: block;
}

.wiki-second-page .faq .faq-question,
.wiki-second-page .faq .faq-question * {
  font-size: 18px;
  font-weight: 600 !important;
  line-height: 28px;
  font-style: normal !important;
  color: #333333;
  max-width: 100%;
}

.wiki-second-page .faq .faq-answer,
.wiki-second-page .faq .faq-answer * {
  font-size: 18px;
  font-weight: 400 !important;
  line-height: 28px;
  font-style: normal !important;
  color: #333333;
  max-width: 100%;
}

.wiki-third-article-page .article-2-columns {
  display: flex;
  margin-top: 40px;
  width: 100%;
}

.wiki-third-article-page .article-2-columns .wiki-article-fast-navigation {
  position: relative;
  width: 310px;
  margin-left: 30px;
  flex-shrink: 0;
  background-color: #ffffff;
}

@media screen and (max-width: 1280px) {
  .wiki-third-article-page .article-2-columns .wiki-article-fast-navigation {
    display: none;
  }
}

.wiki-third-article-page .article-2-columns .wiki-article-fast-navigation .float-box {
  width: 100%;
  position: sticky;
  top: 126px;
  left: 0;
  max-height: 100vh;
  overflow-y: scroll;
}

.wiki-third-article-page .article-2-columns .wiki-article-fast-navigation .float-box>p {
  font-size: 12px;
  font-weight: normal;
  color: #b3b3b3;
  margin-bottom: 24px;
}

.wiki-third-article-page .article-2-columns .wiki-article-fast-navigation .float-box>ul {
  border-left: 1px solid #d8d8d8;
  padding: 10px 0 30px;
}

.wiki-third-article-page .article-2-columns .wiki-article-fast-navigation .float-box>ul li a {
  display: block;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: normal;
  line-height: 22px;
  color: #666666;
}

.wiki-third-article-page .article-2-columns .wiki-article-fast-navigation .float-box>ul li a.children {
  padding: 6px 20px 6px 30px;
  font-size: 14px;
  font-weight: normal;
  line-height: 22px;
  color: #666666;
}

.wiki-third-article-page .article-2-columns .wiki-article-fast-navigation .float-box>ul li a.active,
.wiki-third-article-page .article-2-columns .wiki-article-fast-navigation .float-box>ul li a:hover {
  background: #fafafa;
  color: #493123;
  border-left: 2px solid #a8a8a8;
}