@charset "UTF-8";
.wiki_nav.hide {
  transform: translateY(-253px);
  opacity: 0;
}

.wiki_nav {
  position: fixed;
  min-height: 60px;
  width: calc(100% - 240px);
  padding: 0 120px;
  top: 0;
  left: 0;
  z-index: 101;
  background-color: var(--card_bg);
  align-items: center;
  display: flex;
  flex-wrap: wrap;
}
.wiki_nav:not(hide) {
  box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.1019607843), 0 0.2rem 0.4rem rgba(0, 0, 0, 0.2);
}
.wiki_nav .wiki_nav_content {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  /* 以下用于滚动条样式
  &:hover {
    overflow-x: auto;
  }
  */
}
.wiki_nav .wiki_nav_content::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
.wiki_nav .wiki_nav_content::-webkit-scrollbar-thumb {
  background-color: #c7c9cc;
  border-radius: 3px;
}

.wiki_nav_content > a {
  display: inline-flex;
  margin-right: 15px;
  margin-top: 5px;
  margin-bottom: 5px;
  color: var(--font_2);
}
.wiki_nav_content > a.active {
  color: var(--active);
}

.wiki_nav_content > .wiki-search {
  display: inline-flex;
}
.wiki_nav_content > .wiki-search input {
  width: 0;
  min-height: 35px;
  border: none;
  outline: none;
  padding: 0;
  transition: all 0.3s;
}
.wiki_nav_content > .wiki-search button {
  color: var(--font_1);
  border: 0;
  background-color: transparent;
  font-size: 15px;
  transition: all 0.3s;
  cursor: pointer;
}

.wiki_nav_content > .show_search {
  align-items: center;
}
.wiki_nav_content > .show_search input {
  box-sizing: border-box;
  width: 200px;
  min-height: 35px;
  border-color: var(--bg);
  color: var(--font_1);
  border-style: solid;
  border-width: 1px 0 1px 1px;
  margin-top: 5px;
  margin-bottom: 5px;
  border-radius: 5px 0 0 5px;
  padding-left: 10px;
  background-color: rgba(var(--card_bg), 0.5);
}
.wiki_nav_content > .show_search button {
  box-sizing: border-box;
  min-height: 35px;
  border-color: var(--bg);
  border-style: solid;
  border-width: 1px 1px 1px 0;
  border-radius: 0 5px 5px 0;
  margin-top: 5px;
  margin-bottom: 5px;
}

.my_header {
  width: 100%;
  height: 700px;
  position: relative;
}
.my_header .title {
  position: absolute;
  left: 50%;
  top: 45%;
  transform: translate(-50%, -50%);
  z-index: 1;
  color: white;
}
.my_header .title h1 {
  font-size: 40px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 20px;
}
.my_header .title p {
  font-size: 18px;
  text-align: center;
}
.my_header > .dynamic_shuffle {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  transition: all 1s;
  opacity: 1;
}
.my_header > .dynamic_shuffle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

nav {
  width: calc(100% - 240px);
  min-height: 60px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 0 120px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
nav .left {
  width: 80%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
nav .right {
  width: 20%;
  display: flex;
  justify-content: right;
}
nav .right img {
  width: 20px;
  margin-right: 20px;
  cursor: pointer;
}
nav .right .el-dropdown-link {
  cursor: pointer;
  color: white;
  font-size: 16px;
}
nav .right.hide {
  display: none;
}
nav a {
  display: inline-flex;
  margin-right: 20px;
  margin-top: 5px;
  margin-bottom: 10px;
  color: white;
  flex-shrink: 0;
}
nav a.active {
  color: var(--active);
  font-weight: 800;
}
nav .nav_drawer_item {
  display: none;
}
nav .wiki_topic_item {
  display: none;
}

nav.show {
  background-color: var(--card_bg);
  box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.1019607843), 0 0.2rem 0.4rem rgba(0, 0, 0, 0.2);
}
nav.show a {
  color: var(--font_1);
}
nav.show a.active {
  color: var(--active);
  font-weight: 600;
}
nav.show .el-dropdown .el-dropdown-link {
  color: var(--font_1);
}

main {
  width: calc(100% - 240px);
  padding: 20px 120px;
  background-color: var(--bg);
  color: var(--font_1);
  display: flex;
  justify-content: center;
}

footer {
  width: 100%;
  display: flex;
  height: 160px;
  background-color: var(--card_bg);
  color: var(--font_1);
  font-size: 14px;
}
footer .left, footer .right {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
footer p {
  margin-bottom: 10px;
}
footer .thank {
  color: var(--font_1);
  font-size: 16px;
}
footer .site_info {
  display: flex;
  align-items: center;
}
footer .site_info span {
  margin-right: 10px;
  display: flex;
  align-items: center;
}
footer .site_info img {
  margin-right: 5px;
  width: 20px;
}
footer .beian a {
  display: flex;
  align-items: center;
  color: var(--font_1);
}
footer .contact {
  display: flex;
  justify-content: space-between;
  width: 250px;
  margin-bottom: 5px;
}
footer .contact > div {
  position: relative;
}
footer .contact > div .QRcode {
  width: 80px;
  position: absolute;
  top: -45px;
  left: -21px;
  transition: all 0.4s;
  opacity: 0;
}
footer .contact .svg {
  width: 40px;
  cursor: pointer;
  position: relative;
  z-index: 1;
}
footer .contact .svg:hover ~ .QRcode {
  top: -91px;
  left: -21px;
  opacity: 1;
}

nav .search {
  display: inline-flex;
  margin-bottom: 5px;
}
nav .search input {
  width: 0;
  min-height: 35px;
  border: none;
  outline: none;
  padding: 0;
  transition: all 0.3s;
}
nav .search button {
  color: white;
  border: 0;
  background-color: transparent;
  font-size: 15px;
  transition: all 0.3s;
  cursor: pointer;
}

nav.show .search button {
  color: var(--font_1);
}

nav .show_search {
  align-items: center;
}
nav .show_search .search_box::-webkit-input-placeholder {
  color: var(--ele_placeholder_darken);
}
nav .show_search .search_box::-moz-placeholder {
  color: var(--ele_placeholder_darken);
}
nav .show_search .search_box::-ms-input-placeholder {
  color: var(--ele_placeholder_darken);
}
nav .show_search input {
  height: 35px;
  box-sizing: border-box;
  width: 200px;
  border-radius: 5px 0 0 5px;
  padding-left: 10px;
  background-color: rgba(var(--card_bg), 0.5);
  color: var(--card_bg);
}
nav .show_search button {
  height: 35px;
  box-sizing: border-box;
  background-color: var(--card_bg);
  border-radius: 0 5px 5px 0;
  color: #333333;
  background-color: rgba(var(--card_bg), 0.5);
}

nav.show .show_search {
  align-items: center;
}
nav.show .show_search input {
  box-sizing: border-box;
  min-height: 35px;
  border-color: var(--bg);
  color: var(--font_1);
  border-style: solid;
  border-width: 1px 0 1px 1px;
  margin-bottom: 5px;
}
nav.show .show_search button {
  box-sizing: border-box;
  min-height: 35px;
  border-color: var(--bg);
  border-style: solid;
  border-width: 1px 1px 1px 0;
  margin-bottom: 5px;
}

.el-scrollbar__wrap {
  overflow-x: hidden !important;
}

.el-textarea__inner {
  color: var(--font_2);
  background-color: var(--ele_bg);
  border: 1px solid var(--ele_placeholder);
}

.el-textarea__inner::-webkit-input-placeholder {
  color: var(--ele_placeholder);
}

.el-textarea__inner:-ms-input-placeholder {
  color: var(--ele_placeholder);
}

.el-textarea__inner::-ms-input-placeholder {
  color: var(--ele_placeholder);
}

.el-textarea__inner::placeholder {
  color: var(--ele_placeholder);
}

.el-textarea__inner:hover {
  border-color: var(--ele_placeholder_darken);
}

.el-textarea__inner:focus {
  outline: 0;
  border-color: var(--ele_placeholder_darken);
}

.el-input__inner {
  background-color: var(--ele_bg);
  border: 1px solid var(--ele_placeholder);
  color: var(--font_2);
}
.el-input__inner:focus {
  border-color: var(--ele_placeholder_darken);
}

.el-input__inner::-webkit-input-placeholder {
  color: var(--ele_placeholder);
}

.el-input__inner:-ms-input-placeholder {
  color: var(--ele_placeholder);
}

.el-input__inner::-ms-input-placeholder {
  color: var(--ele_placeholder);
}

.el-input__inner::placeholder {
  color: var(--ele_placeholder);
}

.el-input__inner:hover {
  border-color: var(--ele_placeholder_darken);
}

.el-input.is-active .el-input__inner, .el-input__inner:focus {
  border-color: var(--ele_placeholder_darken);
  outline: 0;
}

.el-range-editor.is-active, .el-range-editor.is-active:hover, .el-select .el-input.is-focus .el-input__inner {
  border-color: var(--ele_placeholder_darken) !important;
}

.el-select .el-input__inner:focus {
  border-color: var(--ele_placeholder_darken) !important;
}

.el-link.el-link--warning {
  color: var(--active);
}

.el-link.el-link--warning:hover {
  color: var(--active);
}

.el-link.el-link--warning.is-underline:hover:after, .el-link.el-link--warning:after {
  border-color: var(--active);
}

.el-dialog {
  background: var(--card_bg) !important;
  color: var(--font_1);
}
.el-dialog .el-dialog__title {
  color: var(--font_1);
}
.el-dialog .el-dialog__headerbtn .el-dialog__close {
  color: var(--font_1);
}

.el-dialog__body {
  color: var(--font_2);
}

.el-radio__input.is-checked .el-radio__inner {
  background: var(--ele_radio_check);
}

.el-radio__inner {
  border: 1px solid var(--ele_placeholder_darken);
  background-color: var(--card_bg);
}

.el-radio__input.is-checked .el-radio__inner {
  border-color: var(--card_bg);
}

.el-upload__tip {
  color: var(--ele_placeholder);
}

.el-dropdown-menu {
  background-color: var(--card_bg);
}

.el-dropdown-menu__item:focus, .el-dropdown-menu__item:not(.is-disabled):hover {
  background-color: var(--bg_darken);
}

.el-select-dropdown__item {
  background: var(--ele_dropdown_color) !important;
  color: var(--font_2) !important;
}

.el-select-dropdown {
  border: 1px solid var(--ele_bg);
}

.el-scrollbar__wrap {
  background: var(--ele_dropdown_color);
}

.el-select-dropdown__item.hover, .el-select-dropdown__item:hover {
  background-color: var(--ele_dropdown_hover_color) !important;
}

.el-select-dropdown__list li.selected {
  background-color: var(--ele_dropdown_hover_color);
}

.el-popper[x-placement^=top] .popper__arrow {
  color: var(--ele_dropdown_color);
  border-top-color: var(--ele_dropdown_color);
}

.el-popper[x-placement^=bottom] .popper__arrow {
  color: var(--ele_dropdown_color);
  border-bottom-color: var(--ele_dropdown_color);
}

.el-popper[x-placement^=bottom] .popper__arrow::after {
  border-bottom-color: var(--ele_dropdown_color);
}

.el-popper[x-placement^=top] .popper__arrow::after {
  border-top-color: var(--ele_dropdown_color);
}

.el-select-dropdown {
  background-color: transparent;
}
.el-select-dropdown .el-scrollbar {
  border-radius: 5px !important;
}

.pager {
  list-style: none;
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.pager > li {
  min-width: 30px;
  height: 30px;
  background-color: var(--card_bg);
  border-radius: 5px;
  transition: all 0.3s;
  margin-right: 10px;
}
.pager > li:last-child {
  margin-right: 0;
}
.pager > li a {
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  display: inline-flex;
  box-sizing: border-box;
  padding: 0 10px 0 10px;
  color: var(--font_2);
}
.pager > li:hover {
  background-color: var(--active);
}
.pager > li:hover a {
  color: white;
}
.pager > li.active {
  background-color: var(--active);
}
.pager > li.active a {
  color: var(--card_bg);
}

a {
  color: var(--font_2);
}

.card .title {
  box-shadow: 8px 8px 8px rgba(7, 17, 27, 0.06);
  border-radius: 12px 8px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--bg);
  padding: 20px 20px 10px 20px;
  background-color: var(--card_bg);
}
.card .title a {
  color: var(--active);
}
.card .title h2 {
  font-size: 20px;
}
.card .title > div a {
  font-size: 14px;
}
.card .body {
  border-radius: 0 0 8px 12px;
  padding: 10px 20px 20px 20px;
  background-color: var(--card_bg);
  box-shadow: 8px 8px 8px rgba(7, 17, 27, 0.06);
}

#app {
  width: 100%;
}
#app .main {
  width: 1200px;
  min-height: 200px;
  display: flex;
  justify-content: space-between;
}
#app .main > div > div {
  margin-bottom: 20px;
}
#app .main .left {
  width: 69%;
}
#app .main .left .high_quality_article > .title > .switch_article_category span {
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s;
}
#app .main .left .high_quality_article > .title > .switch_article_category span:hover {
  color: var(--active);
}
#app .main .left .high_quality_article > .title > .switch_article_category span[active] {
  color: var(--active);
}
#app .main .left .high_quality_article > .body {
  padding: 0 20px;
}
#app .main .left .high_quality_article > .body > ul {
  display: flex;
  flex-wrap: wrap;
}
#app .main .left .high_quality_article > .body > ul > li {
  width: 50%;
  box-sizing: border-box;
  display: flex;
  padding: 10px 0;
}
#app .main .left .high_quality_article > .body > ul > li:nth-child(1), #app .main .left .high_quality_article > .body > ul > li:nth-child(3), #app .main .left .high_quality_article > .body > ul > li:nth-child(5) {
  border-right: 1px solid var(--bg);
  padding: 10px 10px 10px 0;
}
#app .main .left .high_quality_article > .body > ul > li:nth-child(2), #app .main .left .high_quality_article > .body > ul > li:nth-child(4), #app .main .left .high_quality_article > .body > ul > li:nth-child(6) {
  padding-left: 10px;
}
#app .main .left .high_quality_article > .body > ul > li:nth-child(1), #app .main .left .high_quality_article > .body > ul > li:nth-child(2), #app .main .left .high_quality_article > .body > ul > li:nth-child(3), #app .main .left .high_quality_article > .body > ul > li:nth-child(4) {
  border-bottom: 1px solid var(--bg);
}
#app .main .left .high_quality_article > .body > ul > li .left {
  width: 40%;
}
#app .main .left .high_quality_article > .body > ul > li .left > div {
  width: 100%;
  overflow: hidden;
  height: 90px;
  border-radius: 5px;
}
#app .main .left .high_quality_article > .body > ul > li .left img {
  height: 100%;
  object-fit: cover;
  transition: all 0.3s;
}
#app .main .left .high_quality_article > .body > ul > li .left img:hover {
  transform: scale(1.1);
}
#app .main .left .high_quality_article > .body > ul > li .right {
  padding-left: 10px;
  box-sizing: border-box;
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#app .main .left .high_quality_article > .body > ul > li .right h2 {
  font-size: 20px;
}
#app .main .left .high_quality_article > .body > ul > li .right p {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
#app .main .left .high_quality_article > .body > ul > li .right span {
  font-size: 14px;
  color: var(--font_2);
}
#app .main .left .all_article > .body {
  background-color: transparent;
  padding: 0;
}
#app .main .left .all_article > .body > ul {
  width: 100%;
}
#app .main .left .all_article > .body > ul > li {
  width: 100%;
  display: flex;
  background-color: var(--card_bg);
  margin-bottom: 20px;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}
#app .main .left .all_article > .body > ul > li:first-child {
  border-radius: 0 0 5px 5px;
}
#app .main .left .all_article > .body > ul > li:first-child .left {
  padding: 10px 10px 20px 20px;
}
#app .main .left .all_article > .body > ul > li:first-child .right {
  padding: 10px 20px 20px 10px;
}
#app .main .left .all_article > .body > ul > li .left {
  width: 30%;
  box-sizing: border-box;
  padding: 20px 10px 20px 20px;
}
#app .main .left .all_article > .body > ul > li .left > div {
  width: 100%;
  height: 140px;
  overflow: hidden;
  border-radius: 5px;
}
#app .main .left .all_article > .body > ul > li .left > div img {
  width: 100%;
  transition: all 0.3s;
}
#app .main .left .all_article > .body > ul > li .left > div img:hover {
  transform: scale(1.1);
}
#app .main .left .all_article > .body > ul > li .right {
  width: 70%;
  padding: 20px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#app .main .left .all_article > .body > ul > li .right .editormd-html-preview {
  color: var(--font_2);
  background-color: var(--card_bg);
}
#app .main .left .all_article > .body > ul > li .right > h2 {
  font-size: 23px;
}
#app .main .left .all_article > .body > ul > li .right > div {
  padding: 0;
  font-size: 15px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
#app .main .left .all_article > .body > ul > li .right .article_statics {
  display: flex;
  justify-content: space-between;
}
#app .main .left .all_article > .body > ul > li .right .article_statics .article_info {
  display: flex;
  font-size: 14px;
  color: var(--font_2);
}
#app .main .left .all_article > .body > ul > li .right .article_statics .article_info > span {
  margin-right: 10px;
}
#app .main .left .all_article > .body > ul > li .right .article_statics .article_info > span i {
  margin-right: 5px;
}
#app .main .left .all_article > .body > ul > li .right .article_statics .details_button a {
  color: var(--active);
  font-size: 14px;
}
#app .main .left .all_article > .body > ul > li .right .article_statics .details_button span {
  margin-right: 10px;
}
#app .main .left .all_article > .body > ul > li .category_flag {
  position: absolute;
  top: 13px;
  right: -75px;
  width: 200px;
  height: 20px;
  font-size: 14px;
  background-color: var(--font_del);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: rotate(45deg);
}
#app .main .left .all_article > .body > ul > li .category_flag[len="4"] {
  font-size: 12px;
}
#app .main .right {
  width: 30%;
}
#app .main .right .tags > .body {
  position: relative;
}
#app .main .right .tags > .body ul {
  display: flex;
  flex-wrap: wrap;
  margin-top: 10px;
}
@keyframes move_box {
  0% {
    left: 0;
    top: 0;
  }
  25% {
    left: calc(100% - 20px);
    top: 0;
  }
  50% {
    top: calc(100% - 20px);
    left: calc(100% - 20px);
  }
  75% {
    left: 0;
    top: calc(100% - 20px);
  }
  100% {
    left: 0;
    top: 0;
  }
}
#app .main .right .tags > .body ul::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 20px;
  height: 20px;
  content: "";
  background-color: var(--active);
  animation-name: move_box;
  animation-duration: 5s;
  animation-iteration-count: infinite;
}
#app .main .right .tags > .body ul li {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 33%;
  height: 40px;
  font-size: 14px;
}
#app .main .right .tags > .body ul li:nth-child(6n+1), #app .main .right .tags > .body ul li:nth-child(6n+2), #app .main .right .tags > .body ul li:nth-child(6n+3) {
  background-color: var(--bg);
}
#app .main .right .tags > .body ul li:nth-child(3n+1), #app .main .right .tags > .body ul li:nth-child(3n+2) {
  border-right: 1px solid var(--bg_darken);
}
#app .main .right .tags > .body ul li i {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  font-size: 10px;
  color: var(--card_bg);
  background-color: var(--active);
  border-radius: 50%;
  margin-left: 5px;
}
#app .main .right .friend > .body ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}
#app .main .right .friend > .body ul li {
  display: flex;
  height: 40px;
  align-items: center;
  width: 50%;
}
#app .main .right .site_info > .body .item {
  margin-bottom: 10px;
}
#app .main .right .site_info > .body .images {
  margin-top: 10px;
  display: flex;
}
#app .main .right .site_info > .body .images > div {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#app .main .right .site_info > .body .images img {
  height: 100px;
  border-radius: 5px;
}
#app .main .right .feedback > .body .el-input, #app .main .right .feedback > .body .el-textarea {
  margin-bottom: 10px;
}
#app .main .right .feedback > .body .el-button {
  width: 100%;
}

.article_content > li:nth-of-type(n+2) {
  width: calc(100% - 40px);
  margin-top: 15px;
  min-height: 200px;
  background-color: var(--card_bg);
  border-radius: 8px;
  box-shadow: 8px 8px 8px rgba(7, 17, 27, 0.06);
}

.entertainment > .body {
  padding: 20px;
  height: 220px;
  /*
  > div {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    background-color: white;
    margin-bottom: 20px;
    border-radius: 5px;

    &:first-child{
      border-radius: 0 0 5px 5px;
    }

    > a {
      width: 100%;
      height: 100%;
      display: block;
      overflow: hidden;

      img{
        width: 100%;
        transition: all 0.3s;

        &:hover{
          transform: scale(1.1);
        }
      }
    }
  }
   */
}
.entertainment > .body .adv_img_list img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dialog_content {
  margin-top: 5px;
}
.dialog_content:first-child {
  margin-top: 0;
}
.dialog_content > label {
  display: block;
  margin-bottom: 5px;
}
.dialog_content .justify .icon_href {
  width: 70%;
}
.dialog_content .justify .icon_img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30%;
}
.dialog_content .justify .icon_img img {
  height: 40px;
}
.dialog_content .el-select {
  width: 100%;
}

.el-select-dropdown__list {
  /*
  li.selected {
    background-color: var(--active);
  }
   */
}
.el-select-dropdown__list li {
  height: 60px;
  display: flex;
  align-items: center;
}
.el-select-dropdown__list li:last-child {
  margin-bottom: 10px;
}
.el-select-dropdown__list li img {
  height: 50px;
  border-radius: 5px;
}

.cursor {
  cursor: pointer;
}

.flex {
  display: flex;
}

/*# sourceMappingURL=index.css.map */
