/* ================= reset ================= */
#face {
  font-family: Arial, sans-serif;
  padding:0px;
}

#face ul,
#face li {
  list-style: none;
  margin: 0;
  padding: 0;
}

#face a {
  text-decoration: none;
}

/* ================= container ================= */
#face .container {
  width: 100%;
  margin: 0 auto;
}

@media (min-width: 960px) {
  #face .container {
    width: 95%;
    max-width: 1200px;
  }
}

/* ================= HEADER（默认=移动端） ================= */
#face .header {
  position: relative;
  padding: 10px;
  border-bottom: 1px solid #ddd;
}

#face .header .left {
  text-align: left;
  font-weight: bold;
}

#face .header .right {
  position: absolute;
  right: 10px;
  top: 10px;
}

#face .header .btn {
  display: inline-block;
  margin-left: 5px;
  padding: 5px 8px;
  background: transparent;
  color: #fff;
  border-radius: 3px;
  font-size: 12px;
}

/* 搜索（移动） */
#face form.search {
  margin-top: 10px;
  display: flex;
}

#face form.search input {
  flex: 1;
  border: 0;
  padding: 5px;
}

#face form.search button {
    padding:5px;
  width: 70px;
  background: transparent;
  color: #fff;
  border: none;
}

/* ================= NAV（移动端） ================= */
#face .nav {
  background: #f60;
}

#face .nav ul {
  display: flex;
  flex-wrap: wrap;
}

#face .nav ul li {
    float: left;
    width: 16.66667%;
    text-align: center;
}

#face .nav ul li a {
  display: block;
  color: #fff;
  padding: 10px 0;
}

#face .nav ul li a:hover {
  background: #f14c36;
}

/* ================= PC 端（关键修复） ================= */
@media (min-width: 960px) {
  /* 用 container 做布局 */
  #face .header .container {
    display: flex;
    align-items: center;
  }

  /* 左 */
  #face .header .left {
    flex: 0 0 auto;
    text-align: left;
    font-size: 24px;
    line-height: 1.2;
  }

  #face .header .left p {
    font-size: 12px;
    color: #f60;
  }

  /* 中（关键：真正居中） */
  #face .header .search {
    flex: 1;
    max-width: 500px;
    margin: 0 auto;
    display: flex;
  }

  #face .header .search input {
    height: 36px;
    border-right: none;
  }

  #face .header .search button {
    width: 100px;
    height: 36px;
  }
  
    #face .header .btn, .header .search button {
        background-color: transparent;
        line-height: 36px;
        cursor: pointer;
    }

  /* 右 */
  #face .header .right {
    position: static;   /* ❗取消 absolute */
    flex: 0 0 auto;
    display: flex;
    gap: 10px;
  }

  #face .header .btn {
    height: 36px;
    line-height: 36px;
    padding: 0 15px;
    font-size: 14px;
  }

  /* NAV PC */
  #face .nav ul {
    justify-content: space-between;
    gap: 30px;
  }

  #face .nav ul li {
    width: auto;
  }
}

/* 默认：只显示移动端 */
#face .header.hidden-xs {
  display: none;
}

#face .header.hidden-md {
  display: block;
}

/* PC：只显示PC端 */
@media (min-width: 960px) {

  #face .header.hidden-xs {
    display: block;
  }

  #face .header.hidden-md {
    display: none;
  }

}

/* ================= 2025 theme alignment ================= */
html,
body {
  background: #fff;
  color: #999;
}

body {
  font-family: Arial, "Microsoft YaHei", sans-serif;
}

a {
  color: #333;
}

a:hover {
  color: #f60;
}

#face {
  background: #fff;
  box-shadow: none;
  border: 0;
  color: #333;
}

#face .container,
#wrap .inner,
#base {
  width: 90%;
  max-width: 992px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

#face .header {
  height: 3rem;
  line-height: 3rem;
  padding: 0;
  border: 0;
  background: #fff;
}

#face .header .left {
  font-size: .875rem;
  line-height: 3rem;
  color: #333;
}

#face .header .left a {
  color: #333;
  font-weight: 700;
}

#face .header .left p {
  display: none;
}

#face .header .right {
  line-height: 3rem;
}

#face .header .btn {
  height: auto;
  line-height: 1;
  padding: 0;
  margin-left: .5rem;
  background: none;
  color: #f60;
  border-radius: 0;
  font-size: .75rem;
}

#face .header .btn:hover {
  background: none;
  color: #f60;
}

#face form.search {
  width: 10rem;
  height: 1.5rem;
  margin: .75rem auto 0;
  background: #f0f2f7;
  border-radius: 3px;
  overflow: hidden;
}

#face form.search input {
  height: 1.5rem;
  line-height: 1.5rem;
  border: 0;
  background: transparent;
  padding: 0;
  text-indent: .5em;
  font-size: .7rem;
}

#face form.search button {
  width: 2.5rem;
  height: 1.5rem;
  line-height: 1.5rem;
  padding: 0;
  background: transparent;
  color: #666;
  font-size: .7rem;
}

#face .nav {
  height: 2.2rem;
  line-height: 2.2rem;
  background: #f60;
}

#face .nav ul {
  display: block;
  height: 2.2rem;
  overflow: hidden;
}

#face .nav ul li {
  float: left;
  width: calc(100% / 7);
  height: 2.2rem;
  line-height: 2.2rem;
  text-align: center;
}

#face .nav ul li a {
  height: 2.2rem;
  line-height: 2.2rem;
  padding: 0;
  color: #fff;
  font-size: .8rem;
}

#face .nav ul li a:hover {
  background: #f14c36;
  color: #fff;
}

#banner {
  display: none;
}

#wrap .inner {
  margin-top: 0;
  padding-top: 1rem;
  background: #fff;
}

#main {
  width: calc(100% - 15rem);
}

#side {
  width: 13rem;
}

#path {
  margin: 0 0 1rem;
  color: #999;
  font-size: .7rem;
}

#topic,
.log .pane,
#side .pane,
#cont .pane {
  background: #fff;
  box-shadow: none;
}

.log .pane {
  border-bottom: 1px solid #f0f2f7;
  padding: 1rem 0;
  margin-bottom: 0;
}

.log h3 {
  font-size: .9rem;
  font-weight: 700;
}

.log h5,
.log .pane > div,
.log .tags {
  font-size: .75rem;
  color: #666;
}

.zit {
  background: none;
  color: #333;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
  position: static;
}

.log .zit,
#topic .zit,
#rel .zit {
  display: inline-block;
  background: #f0f2f7;
  color: #666;
  padding: .05rem .25rem;
  border-radius: 3px;
  box-shadow: inset 1px 0 rgba(0,0,0,.05), inset 0 1px rgba(0,0,0,.05), inset 0 -1px rgba(0,0,0,.05), inset -1px 0 rgba(0,0,0,.05);
}

#side h3,
#side h4,
#main > h2,
#topic h4 {
  line-height: 1rem;
  min-height: 1rem;
  font-size: .875rem;
  font-weight: 400;
  color: #333;
}

#side h3:before,
#side h4:before,
#topic h4:before {
  content: "";
  display: inline-block;
  width: .2rem;
  height: 1rem;
  margin-right: .5rem;
  vertical-align: text-bottom;
  background: #f14c36;
  border-radius: .2rem;
}

#pagi a,
#pagi span {
  border: 1px solid #f0f2f7;
  border-radius: 3px;
  color: #666;
}

#pagi a:hover,
#pagi span {
  background: #f0f2f7;
  color: #f60;
}

#base.footer {
  border-top: 1px solid rgba(0,0,0,.05);
  color: #999;
  background: #fff;
}

@media (max-width: 959px) {
  #face .container,
  #wrap .inner,
  #base {
    width: 90%;
    max-width: none;
  }

  #face .header {
    height: auto;
    min-height: 2.5rem;
    line-height: 2.5rem;
  }

  #face .header .left {
    line-height: 2.5rem;
    font-size: .95rem;
  }

  #face .header .right {
    position: static;
    float: right;
    line-height: 2.5rem;
  }

  #face .header .btn {
    font-size: .7rem;
  }

  #face .nav,
  #face .nav ul {
    height: auto;
    line-height: 2.2rem;
  }

  #face .nav ul li {
    width: calc(100% / 4);
  }

  #main,
  #side {
    width: 100%;
    float: none;
  }

  .log .pane {
    padding: .75rem 0;
  }
}

/* ================= biquge2023 header categories ================= */
#face .header.hidden-xs .left a,
#face .header-home .left a {
  color: var(--bq-link) !important;
}

#face .header.hidden-xs .left p {
  color: #f60 !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
}

#face .header .right .btn.user:before {
  content: "◎" !important;
  margin-right: 3px !important;
}

#face .header .right .btn.history:before {
  content: "◴" !important;
  margin-right: 3px !important;
}

@media (min-width: 960px) {
  #face .container,
  .zhuanti-title,
  #wrap .inner,
  #base.footer .container,
  .article #topic,
  .page #topic {
    width: 95% !important;
    max-width: 1200px !important;
  }

  #face .header.hidden-xs {
    padding: 28px 0 26px !important;
  }

  #face .header.hidden-xs .left a {
    color: var(--bq-link) !important;
    font-size: 30px !important;
    line-height: 32px !important;
    font-weight: 700 !important;
  }

  #face .header.hidden-xs .right .btn {
    width: 126px !important;
    height: 46px !important;
    line-height: 46px !important;
    font-size: 17px !important;
    font-weight: 700 !important;
  }

  #face .header.hidden-xs .search {
    max-width: 420px !important;
    height: 44px !important;
  }

  #face .header.hidden-xs .search input {
    height: 40px !important;
    line-height: 40px !important;
    font-size: 17px !important;
  }

  #face .header.hidden-xs .search button {
    width: 74px !important;
    height: 44px !important;
    line-height: 44px !important;
    font-size: 17px !important;
    font-weight: 700 !important;
  }

  #face .nav,
  #face .nav ul {
    height: 60px !important;
    line-height: 60px !important;
  }

  #face .nav ul li {
    flex: 0 0 auto !important;
    width: 88px !important;
    height: 60px !important;
    line-height: 60px !important;
  }

  #face .nav ul li:first-child {
    margin-left: 0 !important;
  }

  #face .nav ul li:nth-last-child(2) {
    margin-left: auto !important;
  }

  #face .nav ul li a,
  #face .nav ul li a:link,
  #face .nav ul li a:visited {
    height: 60px !important;
    line-height: 60px !important;
    font-size: 20px !important;
    font-weight: 700 !important;
  }
}

@media (max-width: 959px) {
  #face .header.header-home .left {
    max-width: 9rem !important;
  }

  #face .header.header-home .left a {
    color: var(--bq-link) !important;
  }

  #face .header.header-home .right .btn {
    color: var(--bq-link) !important;
  }

  #face .nav ul li {
    width: calc(100% / 4) !important;
    flex-basis: calc(100% / 4) !important;
  }
}

/* Header layout matched to the 2025 novel theme */
#face .header .container {
  position: relative;
  display: block;
  height: 3rem;
}

#face .header .left {
  float: left;
  height: 3rem;
  line-height: 3rem;
}

#face .header .left a,
#face .header-home .left {
  font-size: .875rem;
  font-weight: 700;
}

#face .header .right {
  float: right;
  position: static;
  height: 3rem;
  line-height: 3rem;
  display: block;
}

#face .header .right .btn + .btn:before {
  content: "";
  display: inline-block;
  width: 0;
  height: .5rem;
  margin: 0 .5rem 0 0;
  border-left: 1px solid #ececec;
  vertical-align: middle;
}

#face .header .btn {
  margin-left: .5rem;
}

#face .header .search {
  position: absolute;
  left: 50%;
  top: .75rem;
  transform: translateX(-50%);
  width: 12.5rem;
  height: 1.5rem;
  margin: 0;
}

#face .header .search input {
  float: left;
  width: 10rem;
  height: 1.5rem;
  line-height: 1.5rem;
  box-sizing: border-box;
}

#face .header .search button {
  float: right;
  width: 2.5rem;
  height: 1.5rem;
  overflow: hidden;
  text-indent: -999px;
  position: relative;
}

#face .header .search button:after {
  content: "";
  position: absolute;
  left: .75rem;
  top: .3rem;
  width: .65rem;
  height: .65rem;
  border: 2px solid #666;
  border-radius: 50%;
}

#face .header .search button:before {
  content: "";
  position: absolute;
  left: 1.38rem;
  top: .98rem;
  width: .45rem;
  border-top: 2px solid #666;
  transform: rotate(45deg);
}

.zhuanti-title {
  width: 90%;
  max-width: 992px;
  margin: 1rem auto 0;
  box-sizing: border-box;
  overflow: hidden;
  color: #999;
}

.zhuanti-title .crumb {
  float: left;
  height: 1.8rem;
  line-height: 1.8rem;
  font-size: .7rem;
}

.zhuanti-title .crumb a {
  color: #333;
}

.zhuanti-title .crumb span {
  margin-left: .5rem;
}

.zhuanti-title h1 {
  float: left;
  height: 1.8rem;
  line-height: 1.8rem;
  margin: 0 0 0 .75rem;
  color: #f14c36;
  font-size: 1rem;
  font-weight: 700;
  text-shadow: 1px 1px 0 rgba(255,255,255,.8);
}

@media (max-width: 959px) {
  #face .header .container {
    min-height: 2.5rem;
    height: auto;
  }

  #face .header .left {
    max-width: 7rem;
    height: 2.5rem;
    line-height: 2.5rem;
    overflow: visible;
  }

  #face .header .right {
    height: 2.5rem;
    line-height: 2.5rem;
  }

  #face .header .search {
    position: static;
    clear: both;
    float: right;
    transform: none;
    width: 8.75rem;
    margin: 0 0 .5rem;
  }

  #face .header .search input {
    width: 6.25rem;
  }

  .zhuanti-title {
    margin-top: .75rem;
  }

  .zhuanti-title .crumb,
  .zhuanti-title h1 {
    float: none;
    display: block;
    margin-left: 0;
  }
}

/* Hard reset old Zit green/blue widgets for the topic channel */
#face .header .right .btn,
#face .header .right .btn:link,
#face .header .right .btn:visited,
#face .header .right .btn:hover {
  color: #f60 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

#face .header .right .btn:before {
  filter: none !important;
}

.zit,
.zit:before,
.zit:after,
.more,
.more:hover,
a.tag,
a.tag:hover,
#KandyGoTop,
form.cmt button,
.pin .zit b,
#topic .log:hover .pane,
#rel a:hover .pane,
#tbCalendar td a,
#side form[name='search'] input[type='submit'] {
  background: transparent !important;
  color: inherit !important;
  border-color: #f0f2f7 !important;
  box-shadow: none !important;
  filter: none !important;
}

.zit:after {
  display: none !important;
}

#topic,
#side,
#tbCalendar,
.tags,
.more,
.onlym {
  display: none !important;
}

#wrap .inner {
  width: 90%;
  max-width: 992px;
  margin: 0 auto;
  padding-top: 1rem;
  background: #fff;
}

#main {
  float: none !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 auto;
  padding: 0;
}

.zhuanti-title {
  height: auto;
  margin-top: 1rem;
  padding: 0;
}

.zhuanti-title .crumb {
  float: none;
  height: 1rem;
  line-height: 1rem;
  color: #999;
}

.zhuanti-title .crumb span {
  margin-left: .5rem;
}

.zhuanti-title .crumb span:last-child {
  color: #999;
}

.zhuanti-title h1 {
  display: none !important;
}

.log {
  position: relative;
  min-height: 6rem;
  margin: 0;
  padding: 1rem 0;
  border-bottom: 1px solid #f0f2f7;
  overflow: hidden;
}

.log figure {
  float: left;
  width: 4.5rem;
  height: 6rem;
  margin: 0 .75rem 0 0;
  overflow: hidden;
}

.log figure img,
.log figure .cover {
  width: 4.5rem !important;
  height: 6rem !important;
  object-fit: cover;
  display: block;
}

.log .pane {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  min-height: 6rem;
  background: transparent !important;
  box-shadow: none !important;
}

.log h3 {
  margin: 0 0 .3rem;
  line-height: 1.25rem;
  font-size: .9rem;
  font-weight: 700;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.log h5 {
  margin: 0 0 .3rem;
  line-height: 1rem;
  font-size: .7rem;
  color: #999;
}

.log h5 .avatar {
  display: none;
}

.log h5 a,
.log h5 a:hover {
  color: #999 !important;
}

.log .pane > div {
  height: 2.8rem;
  line-height: 1.4rem;
  font-size: .75rem;
  color: #666;
  overflow: hidden;
  text-align: justify;
}

#pagi {
  margin: 1rem 0 0;
  padding-top: .5rem;
  border-top: 1px solid #f0f2f7;
  text-align: center;
}

#base.footer {
  width: 100%;
  max-width: none;
  margin-top: 1rem !important;
  padding: 1rem !important;
  border-top: 1px solid rgba(0,0,0,.05) !important;
  color: #999 !important;
  background: #fff !important;
  font-size: .6rem !important;
}

@media (min-width: 960px) {
  #face .container,
  .zhuanti-title,
  #wrap .inner {
    max-width: 992px !important;
  }
}

@media (max-width: 959px) {
  .log {
    min-height: 5.333rem;
  }

  .log figure,
  .log figure img,
  .log figure .cover {
    width: 4rem !important;
    height: 5.333rem !important;
  }

  .log h3 {
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
  }
}

/* Final 2025 header/footer lock */
#face,
#face *,
#face a,
#face input,
#face button {
  filter: none !important;
}

#face .nav {
  height: 2.75rem !important;
  line-height: 2.75rem !important;
  background: #f60 !important;
  overflow: hidden;
}

#face .nav ul {
  height: 2.75rem !important;
  line-height: 2.75rem !important;
  max-width: 992px !important;
}

#face .nav ul li {
  height: 2.75rem !important;
  line-height: 2.75rem !important;
}

#face .nav ul li a {
  height: 2.75rem !important;
  line-height: 2.75rem !important;
  color: #fff !important;
  background: transparent !important;
  filter: none !important;
}

#face .nav ul li a:hover,
#face .nav ul li.active a {
  background: #f14c36 !important;
  color: #fff !important;
}

#path {
  position: static !important;
  margin: 0 0 1rem !important;
  color: #999 !important;
  font-size: .7rem !important;
  line-height: 1rem !important;
}

#path a {
  color: #333 !important;
  font-size: .7rem !important;
  position: static !important;
  font-weight: 400 !important;
}

#path a:hover {
  color: #f60 !important;
}

#base.footer {
  margin-top: 1rem !important;
  padding: 1rem !important;
  border-top: 1px solid rgba(0,0,0,.05) !important;
  text-align: center !important;
  font-size: .6rem !important;
  color: #999 !important;
}

#base.footer .container {
  width: 90% !important;
  max-width: 992px !important;
  margin: 0 auto !important;
}

#base.footer p {
  margin: 0 !important;
  line-height: 1.5 !important;
}

#base.footer a {
  color: #333 !important;
}

#base.footer a:hover {
  color: #f60 !important;
}

/* Article detail and mobile header fixes */
.article #topic,
.page #topic {
  display: block !important;
  margin: 0 0 1rem !important;
  padding: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.article .zhuanti-title,
.page .zhuanti-title {
  display: none !important;
}

.article #topic h4,
.article #topic h5,
.article #topic p,
.page #topic h4,
.page #topic h5,
.page #topic p {
  display: none !important;
}

.article #topic h1,
.page #topic h1 {
  display: block !important;
  margin: 1.4rem 0 .9rem !important;
  padding: 0 !important;
  text-align: center !important;
  color: #333 !important;
  font-size: 1.15rem !important;
  font-weight: 700 !important;
  line-height: 1.6 !important;
}

.article #topic #path,
.page #topic #path {
  display: block !important;
  margin: 0 0 1rem !important;
  padding: 0 !important;
  color: #999 !important;
}

.article #topic #path a,
.page #topic #path a {
  color: #333 !important;
}

.article #topic #path a:hover,
.page #topic #path a:hover {
  color: #f60 !important;
}

#rel {
  display: none !important;
}

@media (max-width: 959px) {
  #face .header.header-home .container {
    height: auto !important;
    min-height: 4.9rem !important;
  }

  #face .header.header-home .search {
    display: block !important;
    float: none !important;
    clear: both !important;
    position: static !important;
    width: 8.75rem !important;
    height: 1.5rem !important;
    margin: 0 0 .5rem auto !important;
    background: #f0f2f7 !important;
    border-radius: 3px !important;
    overflow: hidden !important;
    transform: none !important;
  }

  #face .header.header-home .search input {
    width: calc(100% - 1.7rem) !important;
    height: 1.5rem !important;
    padding: 0 .45rem !important;
    border: 0 !important;
    background: transparent !important;
    color: #666 !important;
    font-size: .6rem !important;
    line-height: 1.5rem !important;
  }

  #face .header.header-home .search button {
    float: right !important;
    width: 1.7rem !important;
    height: 1.5rem !important;
    border: 0 !important;
    overflow: hidden !important;
    text-indent: -999px !important;
    background: transparent !important;
    position: relative !important;
  }

  #face .header.header-home .search button:before {
    content: "" !important;
    position: absolute !important;
    left: .35rem !important;
    top: .32rem !important;
    width: .55rem !important;
    height: .55rem !important;
    border: .08rem solid #666 !important;
    border-radius: 50% !important;
  }

  #face .header.header-home .search button:after {
    content: "" !important;
    position: absolute !important;
    left: .9rem !important;
    top: .88rem !important;
    width: .38rem !important;
    height: .08rem !important;
    background: #666 !important;
    transform: rotate(45deg) !important;
    transform-origin: left center !important;
  }

  #face .nav,
  #face .nav ul {
    height: 2.2rem !important;
    line-height: 2.2rem !important;
    overflow: visible !important;
  }

  #face .nav ul li {
    width: calc(100% / 7) !important;
    height: 2.2rem !important;
    line-height: 2.2rem !important;
  }

  #face .nav ul li a {
    height: 2.2rem !important;
    line-height: 2.2rem !important;
    font-size: .68rem !important;
    white-space: nowrap !important;
  }

  .article #topic h1,
  .page #topic h1 {
    margin: 1rem 0 .75rem !important;
    font-size: 1rem !important;
  }
}

/* Final width and mobile header alignment */
#face .container,
.zhuanti-title,
#wrap .inner,
#base.footer .container {
  width: 90% !important;
  max-width: 992px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  box-sizing: border-box !important;
}

@media (min-width: 960px) {
  #face .container,
  .zhuanti-title,
  #wrap .inner,
  #base.footer .container {
    width: 800px !important;
    max-width: 800px !important;
  }

  #face .header.hidden-xs {
    height: 3.35rem !important;
    line-height: 3.35rem !important;
    padding-top: .25rem !important;
    box-sizing: border-box !important;
  }

  #face .header.hidden-xs .container {
    height: 3rem !important;
  }

  #face .header.hidden-xs .left,
  #face .header.hidden-xs .right {
    height: 3rem !important;
    line-height: 3rem !important;
  }

  #face .header.hidden-xs .left a {
    font-size: 17px !important;
    font-weight: 700 !important;
  }

  #face .header.hidden-xs .right .btn {
    font-size: 15px !important;
  }

  #face .header.hidden-xs .search {
    top: .9rem !important;
  }
}

#face .nav ul li a {
  font-size: .8rem !important;
  font-weight: 400 !important;
}

@media (max-width: 959px) {
  html,
  body {
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  #face .container,
  .zhuanti-title,
  #wrap .inner,
  #base.footer .container {
    width: 90% !important;
    max-width: 992px !important;
  }

  #face .header.header-home .container {
    position: relative !important;
    height: auto !important;
    min-height: 3.85rem !important;
    padding: 0 !important;
  }

  #face .header.header-home .left {
    float: none !important;
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    max-width: 132px !important;
    height: 44px !important;
    line-height: 44px !important;
    font-size: 19px !important;
    font-weight: 700 !important;
    white-space: nowrap !important;
  }

  #face .header.header-home .left a {
    display: block !important;
    color: #333 !important;
    font-size: 19px !important;
    font-weight: 700 !important;
  }

  #face .header.header-home .search {
    display: block !important;
    float: none !important;
    clear: none !important;
    position: absolute !important;
    right: 0 !important;
    top: 5px !important;
    width: 180px !important;
    height: 30px !important;
    margin: 0 !important;
    background: #f0f2f7 !important;
    border-radius: 3px !important;
    overflow: hidden !important;
    transform: none !important;
  }

  #face .header.header-home .search input {
    width: 146px !important;
    height: 30px !important;
    padding: 0 10px !important;
    border: 0 !important;
    background: transparent !important;
    color: #666 !important;
    font-size: 14px !important;
    line-height: 30px !important;
  }

  #face .header.header-home .search button {
    width: 34px !important;
    height: 30px !important;
  }

  #face .header.header-home .right {
    float: none !important;
    position: absolute !important;
    right: 0 !important;
    top: 35px !important;
    height: 24px !important;
    line-height: 24px !important;
    white-space: nowrap !important;
  }

  #face .header.header-home .right .btn {
    margin-left: 10px !important;
    color: #f60 !important;
    font-size: 15px !important;
  }

  #face .nav ul li a {
    font-size: 16px !important;
    font-weight: 400 !important;
  }

  #face .nav .container {
    width: 100% !important;
    max-width: none !important;
  }

  #face .nav ul li {
    width: calc(100% / 7) !important;
  }
}

/* Keep article summaries to two complete lines */
.log .pane > div {
  display: -webkit-box !important;
  min-height: 48px !important;
  max-height: 48px !important;
  height: 48px !important;
  line-height: 24px !important;
  overflow: hidden !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  color: #666 !important;
}

@media (max-width: 959px) {
  .log .pane > div {
    min-height: 44px !important;
    max-height: 44px !important;
    height: 44px !important;
    line-height: 22px !important;
  }
}

/* Final nav spacing polish */
@media (min-width: 960px) {
  #face .nav,
  #face .nav ul {
    height: 44px !important;
    line-height: 44px !important;
  }

  #face .nav ul {
    text-align: left !important;
    font-size: 0 !important;
  }

  #face .nav ul li {
    float: none !important;
    display: inline-block !important;
    width: 82px !important;
    height: 44px !important;
    line-height: 44px !important;
    text-align: center !important;
  }

  #face .nav ul li a {
    height: 44px !important;
    line-height: 44px !important;
    font-size: 17px !important;
    font-weight: 400 !important;
  }
}

@media (max-width: 959px) {
  #face .nav,
  #face .nav ul,
  #face .nav ul li,
  #face .nav ul li a {
    height: 50px !important;
    line-height: 50px !important;
  }
}

/* Match 2025 list typography */
.zhuanti-title .crumb,
.zhuanti-title .crumb a,
#path,
#path a {
  font-size: .7rem !important;
  line-height: 1.5 !important;
}

.log h3,
.log h3 a {
  font-size: .8rem !important;
  line-height: 1.25rem !important;
  font-weight: 700 !important;
}

.log h5,
.log h5 a {
  font-size: .7rem !important;
  line-height: 1rem !important;
}

.log .pane > div {
  font-size: .7rem !important;
}

/* Breadcrumb block height */
.zhuanti-title {
  margin-top: .65rem !important;
  margin-bottom: 0 !important;
}

.zhuanti-title .crumb,
.zhuanti-title .crumb a,
.zhuanti-title .crumb span {
  height: 1.55rem !important;
  line-height: 1.55rem !important;
  font-size: 14px !important;
}

.log {
  padding-top: .7rem !important;
}

.log h3,
.log h3 a {
  font-size: 16px !important;
  line-height: 24px !important;
}

.article #topic #path,
.article #topic #path a,
.page #topic #path,
.page #topic #path a {
  font-size: 13px !important;
  line-height: 22px !important;
}

.article #topic #path .path-current,
.page #topic #path .path-current {
  color: #999 !important;
  cursor: default !important;
  pointer-events: none !important;
}

.article #topic #path .path-current:hover,
.article #topic #path .path-current:active,
.article #topic #path .path-current:focus,
.page #topic #path .path-current:hover,
.page #topic #path .path-current:active,
.page #topic #path .path-current:focus {
  color: #999 !important;
}

/* ================= biquge2023 redesign ================= */
:root {
  --bq-text: #71757f;
  --bq-link: #5e7ce0;
  --bq-hover: #344899;
  --bq-page: #f6f6f8;
  --bq-title: #e9edfa;
  --bq-dark: #252b3a;
  --bq-border: #d7d8da;
  --bq-card-border: #e9edfa;
}

html,
body {
  background: var(--bq-page) !important;
  color: var(--bq-text) !important;
  font-family: Arial, "Microsoft YaHei", sans-serif !important;
}

a,
a:link,
a:visited {
  color: var(--bq-link) !important;
}

a:hover,
a:active {
  color: var(--bq-hover) !important;
}

#banner {
  display: none !important;
}

#face {
  background: #fff !important;
  color: var(--bq-text) !important;
  border: 0 !important;
  box-shadow: none !important;
}

#face .container,
.zhuanti-title,
#wrap .inner,
#base.footer .container {
  width: 95% !important;
  max-width: 960px !important;
}

#face .header {
  background: #fff !important;
  border: 0 !important;
}

#face .header .left a,
#face .header-home .left a {
  color: var(--bq-dark) !important;
  letter-spacing: 2px !important;
}

#face .header .left p {
  color: #f60 !important;
}

#face .header .right .btn,
#face .header .right .btn:link,
#face .header .right .btn:visited {
  color: #fff !important;
  background-color: var(--bq-link) !important;
  border-radius: 2px !important;
}

#face .header .right .btn:hover {
  color: #fff !important;
  background-color: var(--bq-hover) !important;
}

#face form.search input {
  border: 2px solid var(--bq-link) !important;
  border-right: 0 !important;
  background: #fff !important;
  color: var(--bq-text) !important;
  border-radius: 2px 0 0 2px !important;
}

#face form.search button {
  background: var(--bq-link) !important;
  color: #fff !important;
  border-radius: 0 2px 2px 0 !important;
}

#face form.search:hover input,
#face form.search input:focus {
  border-color: var(--bq-hover) !important;
}

#face form.search:hover button,
#face form.search button:hover {
  background: var(--bq-hover) !important;
}

#face .nav {
  height: 3rem !important;
  line-height: 3rem !important;
  padding: 0 !important;
  background: var(--bq-link) !important;
}

#face .nav ul {
  display: flex !important;
  height: 3rem !important;
  line-height: 3rem !important;
  justify-content: space-between !important;
  align-items: stretch !important;
  font-size: 0 !important;
}

#face .nav ul li {
  float: none !important;
  flex: 1 1 auto !important;
  width: auto !important;
  height: 3rem !important;
  line-height: 3rem !important;
  text-align: center !important;
}

#face .nav ul li a,
#face .nav ul li a:link,
#face .nav ul li a:visited {
  display: block !important;
  height: 3rem !important;
  line-height: 3rem !important;
  padding: 0 !important;
  color: #fff !important;
  background: transparent !important;
  font-size: 1rem !important;
  font-weight: 400 !important;
}

#face .nav ul li a:hover,
#face .nav ul li.active a {
  color: #fff !important;
  background: var(--bq-hover) !important;
  border-radius: 0 !important;
}

.zhuanti-title {
  margin-top: 0 !important;
  margin-bottom: .75rem !important;
  padding: .75rem 0 !important;
  background: transparent !important;
}

.zhuanti-title .crumb,
.zhuanti-title .crumb a,
.zhuanti-title .crumb span {
  height: 2rem !important;
  line-height: 2rem !important;
  color: var(--bq-text) !important;
  font-size: .875rem !important;
}

.zhuanti-title .crumb a {
  color: var(--bq-link) !important;
}

#wrap .inner {
  padding: 0 !important;
}

#main {
  background: #fff !important;
  border: 3px solid var(--bq-card-border) !important;
  border-radius: 2px !important;
  box-shadow: none !important;
}

.log {
  display: block !important;
  margin: 0 1rem !important;
  padding: 1rem 0 !important;
  border-bottom: 1px solid var(--bq-border) !important;
  background: transparent !important;
  box-shadow: none !important;
}

.log:last-child {
  border-bottom: 0 !important;
}

.log .pane {
  display: block !important;
  min-height: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.log h3 {
  margin: 0 0 .35rem !important;
  height: auto !important;
  line-height: 1.4 !important;
}

.log h3 a {
  color: var(--bq-dark) !important;
  font-size: .9375rem !important;
  line-height: 1.4 !important;
  font-weight: 700 !important;
}

.log h3 a:hover {
  color: var(--bq-hover) !important;
}

.log h5,
.log h5 a,
.log h5 span {
  color: var(--bq-text) !important;
  font-size: .875rem !important;
  line-height: 1.4 !important;
  font-weight: 400 !important;
}

.log h5 .avatar {
  display: none !important;
}

.log .pane > div {
  display: -webkit-box !important;
  height: auto !important;
  min-height: 2.6rem !important;
  max-height: 2.6rem !important;
  margin-top: .45rem !important;
  color: var(--bq-text) !important;
  font-size: .875rem !important;
  line-height: 1.3rem !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}

.pagebar,
.pagination {
  margin: 1rem 0 !important;
  text-align: center !important;
}

.pagination > li > a,
.pagination > li > span {
  border-color: var(--bq-card-border) !important;
  color: var(--bq-link) !important;
}

.pagination > .active > a,
.pagination > .active > span {
  background: var(--bq-page) !important;
  color: var(--bq-hover) !important;
}

.article #topic,
.page #topic {
  width: 95% !important;
  max-width: 960px !important;
  margin: .75rem auto 0 !important;
  padding: 0 !important;
  background: transparent !important;
}

.article #topic #path,
.page #topic #path {
  margin: 0 0 .75rem !important;
  color: var(--bq-text) !important;
  font-size: .875rem !important;
  line-height: 2rem !important;
}

.article #topic #path a,
.page #topic #path a {
  color: var(--bq-link) !important;
  font-size: .875rem !important;
}

.article #topic #path .path-current,
.page #topic #path .path-current {
  color: var(--bq-text) !important;
}

.article #topic h1,
.page #topic h1 {
  margin: 0 0 .75rem !important;
  color: var(--bq-dark) !important;
  font-size: 1.5rem !important;
  line-height: 1.5 !important;
}

#cont {
  margin: 0 !important;
  padding: 1rem !important;
  background: #fff !important;
  border: 3px solid var(--bq-card-border) !important;
  border-radius: 2px !important;
  color: var(--bq-dark) !important;
  font-size: 1rem !important;
  line-height: 1.9 !important;
}

#cont p {
  margin: .8rem 0 !important;
}

#base.footer {
  background: #fff !important;
  border-top: 1px solid var(--bq-border) !important;
  color: var(--bq-text) !important;
  font-size: .75rem !important;
}

#base.footer a {
  color: var(--bq-link) !important;
}

#base.footer a:hover {
  color: var(--bq-hover) !important;
}

@media (min-width: 960px) {
  #face .header.hidden-xs {
    display: block !important;
    height: auto !important;
    padding: 20px 0 !important;
    line-height: 1 !important;
  }

  #face .header.hidden-xs .container {
    display: flex !important;
    align-items: center !important;
    height: auto !important;
  }

  #face .header.hidden-xs .left {
    flex: 0 0 auto !important;
    height: auto !important;
    line-height: 24px !important;
    text-align: center !important;
  }

  #face .header.hidden-xs .left a {
    font-size: 24px !important;
    line-height: 24px !important;
  }

  #face .header.hidden-xs .right {
    display: flex !important;
    flex: 0 0 auto !important;
    gap: 10px !important;
    height: auto !important;
    line-height: 36px !important;
    margin-top: 0 !important;
  }

  #face .header.hidden-xs .right .btn {
    display: block !important;
    width: 80px !important;
    height: 36px !important;
    margin: 0 !important;
    padding: 0 !important;
    font-size: 14px !important;
    line-height: 36px !important;
    text-align: center !important;
  }

  #face .header.hidden-xs .search {
    position: static !important;
    display: flex !important;
    flex: 1 1 auto !important;
    width: auto !important;
    max-width: 360px !important;
    height: 36px !important;
    margin: 0 auto !important;
    overflow: visible !important;
  }

  #face .header.hidden-xs .search input {
    width: auto !important;
    height: 32px !important;
    line-height: 32px !important;
    font-size: 14px !important;
  }

  #face .header.hidden-xs .search button {
    position: static !important;
    width: 60px !important;
    height: 36px !important;
    line-height: 36px !important;
    text-indent: 0 !important;
    font-size: 14px !important;
  }
}

@media (max-width: 959px) {
  #face .container,
  .zhuanti-title,
  #wrap .inner,
  #base.footer .container,
  .article #topic,
  .page #topic {
    width: 100% !important;
    max-width: none !important;
  }

  #face .header.header-home {
    display: block !important;
    padding: .5rem 1rem !important;
    background: #fff !important;
  }

  #face .header.header-home .container {
    position: relative !important;
    min-height: 4.25rem !important;
    padding: 0 !important;
  }

  #face .header.header-home .left {
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    height: 2rem !important;
    max-width: 8rem !important;
    line-height: 2rem !important;
  }

  #face .header.header-home .left a {
    color: var(--bq-dark) !important;
    font-size: 1rem !important;
    line-height: 2rem !important;
    font-weight: 700 !important;
    letter-spacing: 0 !important;
  }

  #face .header.header-home .search {
    display: flex !important;
    position: absolute !important;
    right: 0 !important;
    top: 0 !important;
    width: 10rem !important;
    height: 2rem !important;
    margin: 0 !important;
    background: transparent !important;
  }

  #face .header.header-home .search input {
    width: auto !important;
    height: calc(2rem - 4px) !important;
    line-height: calc(2rem - 4px) !important;
    font-size: .75rem !important;
  }

  #face .header.header-home .search button {
    position: static !important;
    width: 2.25rem !important;
    height: 2rem !important;
    line-height: 2rem !important;
    text-indent: 0 !important;
    overflow: hidden !important;
    font-size: .75rem !important;
  }

  #face .header.header-home .search button:before,
  #face .header.header-home .search button:after {
    display: none !important;
  }

  #face .header.header-home .right {
    position: absolute !important;
    right: 0 !important;
    top: 2.25rem !important;
    height: 1.5rem !important;
    line-height: 1.5rem !important;
  }

  #face .header.header-home .right .btn {
    display: inline !important;
    width: auto !important;
    height: auto !important;
    margin-left: .5rem !important;
    padding: 0 !important;
    color: var(--bq-link) !important;
    background: transparent !important;
    font-size: .875rem !important;
    line-height: 1.5rem !important;
  }

  #face .nav,
  #face .nav ul {
    height: auto !important;
    min-height: 2.5rem !important;
    line-height: 2.5rem !important;
  }

  #face .nav ul {
    flex-wrap: wrap !important;
    justify-content: flex-start !important;
  }

  #face .nav ul li {
    width: calc(100% / 4) !important;
    flex: 0 0 calc(100% / 4) !important;
    height: 2.5rem !important;
    line-height: 2.5rem !important;
  }

  #face .nav ul li a {
    height: 2.5rem !important;
    line-height: 2.5rem !important;
    font-size: .9375rem !important;
  }

  .zhuanti-title {
    padding: .5rem 1rem !important;
    margin-bottom: .5rem !important;
  }

  .zhuanti-title .crumb,
  .zhuanti-title .crumb a,
  .zhuanti-title .crumb span {
    font-size: .8125rem !important;
  }

  #main {
    border-width: 0 !important;
    border-top: 3px solid var(--bq-card-border) !important;
    border-bottom: 3px solid var(--bq-card-border) !important;
  }

  .log {
    margin: 0 1rem !important;
  }

  .log h3 a {
    font-size: .9375rem !important;
  }

  .article #topic,
  .page #topic {
    padding: .5rem 1rem 0 !important;
    box-sizing: border-box !important;
  }

  .article #topic h1,
  .page #topic h1 {
    font-size: 1.1rem !important;
  }

  #cont {
    margin: 0 !important;
    padding: 1rem !important;
    border-left: 0 !important;
    border-right: 0 !important;
  }
}

/* ================= final biquge2023 header lock ================= */
#face .header.hidden-xs .left a,
#face .header-home .left a {
  color: #5e7ce0 !important;
}

#face .header.hidden-xs .left p {
  color: #f60 !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
}

#face .header .right .btn.user:before {
  content: "◎" !important;
  margin-right: 3px !important;
}

#face .header .right .btn.history:before {
  content: "◴" !important;
  margin-right: 3px !important;
}

@media (min-width: 960px) {
  #face .container,
  .zhuanti-title,
  #wrap .inner,
  #base.footer .container,
  .article #topic,
  .page #topic {
    width: 95% !important;
    max-width: 1200px !important;
  }

  #face .header.hidden-xs {
    padding: 28px 0 26px !important;
  }

  #face .header.hidden-xs .left a {
    color: #5e7ce0 !important;
    font-size: 30px !important;
    line-height: 32px !important;
    font-weight: 700 !important;
  }

  #face .header.hidden-xs .right .btn {
    width: 126px !important;
    height: 46px !important;
    line-height: 46px !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    color: #fff !important;
    background: #5e7ce0 !important;
  }

  #face .header.hidden-xs .right .btn:hover {
    background: #344899 !important;
  }

  #face .header.hidden-xs .search {
    position: static !important;
    display: flex !important;
    max-width: 420px !important;
    height: 44px !important;
    margin: 0 auto !important;
  }

  #face .header.hidden-xs .search input {
    height: 40px !important;
    line-height: 40px !important;
    border: 2px solid #5e7ce0 !important;
    border-right: 0 !important;
    font-size: 17px !important;
  }

  #face .header.hidden-xs .search button {
    position: static !important;
    width: 74px !important;
    height: 44px !important;
    line-height: 44px !important;
    text-indent: 0 !important;
    background: #5e7ce0 !important;
    color: #fff !important;
    font-size: 17px !important;
    font-weight: 700 !important;
  }

  #face .nav,
  #face .nav ul {
    height: 60px !important;
    line-height: 60px !important;
    background: #5e7ce0 !important;
  }

  #face .nav ul {
    display: flex !important;
    justify-content: space-between !important;
    align-items: stretch !important;
  }

  #face .nav ul li {
    flex: 0 0 auto !important;
    width: 88px !important;
    height: 60px !important;
    line-height: 60px !important;
  }

  #face .nav ul li:nth-last-child(2) {
    margin-left: auto !important;
  }

  #face .nav ul li a,
  #face .nav ul li a:link,
  #face .nav ul li a:visited {
    height: 60px !important;
    line-height: 60px !important;
    color: #fff !important;
    font-size: 20px !important;
    font-weight: 700 !important;
  }

  #face .nav ul li a:hover,
  #face .nav ul li.active a {
    background: #344899 !important;
    color: #fff !important;
  }
}

@media (max-width: 959px) {
  #face .header.header-home .left a,
  #face .header.header-home .right .btn {
    color: #5e7ce0 !important;
  }

  #face .nav,
  #face .nav ul {
    background: #5e7ce0 !important;
  }

  #face .nav ul li {
    width: calc(100% / 4) !important;
    flex: 0 0 calc(100% / 4) !important;
  }

  #face .nav ul li a {
    color: #fff !important;
  }
}

/* ================= final biquge2023 header layout fix ================= */
@media (min-width: 960px) {
  #face .container,
  .zhuanti-title,
  #wrap .inner,
  #base.footer .container,
  .article #topic,
  .page #topic {
    width: 95% !important;
    max-width: 960px !important;
  }

  #face .header.hidden-xs {
    padding: 20px 0 !important;
  }

  #face .header.hidden-xs .container {
    display: flex !important;
    align-items: center !important;
  }

  #face .header.hidden-xs .left {
    order: 1 !important;
    flex: 0 0 190px !important;
    width: 190px !important;
    height: auto !important;
    line-height: 1.15 !important;
    text-align: center !important;
  }

  #face .header.hidden-xs .left a {
    display: block !important;
    color: #5e7ce0 !important;
    font-size: 26px !important;
    line-height: 30px !important;
    font-weight: 700 !important;
    letter-spacing: 2px !important;
  }

  #face .header.hidden-xs .left p {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #f60 !important;
    font-size: 14px !important;
    line-height: 18px !important;
    font-weight: 700 !important;
    letter-spacing: 0 !important;
  }

  #face .header.hidden-xs .search {
    order: 2 !important;
    flex: 0 0 420px !important;
    width: 420px !important;
    max-width: 420px !important;
    height: 44px !important;
    margin: 0 auto !important;
  }

  #face .header.hidden-xs .right {
    order: 3 !important;
    flex: 0 0 230px !important;
    width: 230px !important;
    display: flex !important;
    justify-content: flex-end !important;
    gap: 10px !important;
    margin: 0 !important;
  }

  #face .header.hidden-xs .right .btn {
    width: 105px !important;
    height: 36px !important;
    line-height: 36px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
  }

  #face .nav,
  #face .nav ul {
    height: 48px !important;
    line-height: 48px !important;
  }

  #face .nav ul {
    max-width: 960px !important;
  }

  #face .nav ul li {
    flex: 1 1 auto !important;
    width: auto !important;
    min-width: 0 !important;
    height: 48px !important;
    line-height: 48px !important;
  }

  #face .nav ul li:nth-last-child(2) {
    margin-left: 0 !important;
  }

  #face .nav ul li a,
  #face .nav ul li a:link,
  #face .nav ul li a:visited {
    height: 48px !important;
    line-height: 48px !important;
    font-size: 17px !important;
  }
}

/* ================= final biquge2023 proportion fix ================= */
@media (min-width: 960px) {
  #face .header.hidden-xs {
    padding: 20px 0 !important;
  }

  #face .header.hidden-xs .container {
    position: relative !important;
    display: block !important;
    height: 52px !important;
  }

  #face .header.hidden-xs .left {
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    width: 190px !important;
    height: 52px !important;
    text-align: center !important;
  }

  #face .header.hidden-xs .left a {
    display: block !important;
    color: #5e7ce0 !important;
    font-size: 24px !important;
    line-height: 28px !important;
    font-weight: 700 !important;
    letter-spacing: 2px !important;
  }

  #face .header.hidden-xs .left p {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #f60 !important;
    font-size: 12px !important;
    line-height: 16px !important;
    font-weight: 700 !important;
    letter-spacing: 0 !important;
  }

  #face .header.hidden-xs .search {
    position: absolute !important;
    left: 50% !important;
    top: 6px !important;
    transform: translateX(-50%) !important;
    display: flex !important;
    width: 360px !important;
    max-width: 360px !important;
    height: 36px !important;
    margin: 0 !important;
  }

  #face .header.hidden-xs .search input {
    height: 32px !important;
    line-height: 32px !important;
    font-size: 14px !important;
  }

  #face .header.hidden-xs .search button {
    width: 60px !important;
    height: 36px !important;
    line-height: 36px !important;
    font-size: 14px !important;
    font-weight: 400 !important;
  }

  #face .header.hidden-xs .right {
    position: absolute !important;
    right: 0 !important;
    top: 6px !important;
    display: flex !important;
    width: auto !important;
    height: 36px !important;
    gap: 10px !important;
    margin: 0 !important;
  }

  #face .header.hidden-xs .right .btn {
    display: block !important;
    width: 80px !important;
    height: 36px !important;
    padding: 0 0 0 20px !important;
    background-color: #5e7ce0 !important;
    background-image: none !important;
    color: #fff !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 36px !important;
    text-align: center !important;
    box-sizing: border-box !important;
  }

  #face .header.hidden-xs .right .btn:before {
    display: inline-block !important;
    margin: 0 3px 0 -13px !important;
    width: 12px !important;
    height: 36px !important;
    line-height: 36px !important;
    vertical-align: top !important;
    font-size: 13px !important;
  }

  #face .nav,
  #face .nav ul {
    height: 48px !important;
    line-height: 48px !important;
  }

  #face .nav ul {
    display: flex !important;
    justify-content: flex-start !important;
    gap: 0 !important;
  }

  #face .nav ul li {
    flex: 0 0 72px !important;
    width: 72px !important;
    height: 48px !important;
    line-height: 48px !important;
  }

  #face .nav ul li:nth-last-child(2) {
    margin-left: auto !important;
  }

  #face .nav ul li a,
  #face .nav ul li a:link,
  #face .nav ul li a:visited {
    height: 48px !important;
    line-height: 48px !important;
    font-size: 16px !important;
    font-weight: 400 !important;
  }
}

/* ================= final biquge2023 detail polish ================= */
@media (min-width: 960px) {
  #face .header.hidden-xs .left {
    text-align: left !important;
  }

  #face .header.hidden-xs .left a {
    text-align: left !important;
  }

  #face .header.hidden-xs .left p {
    text-align: left !important;
  }

  #face .header.hidden-xs .search button:before,
  #face .header.hidden-xs .search button:after {
    display: none !important;
    content: none !important;
  }

  #face .header.hidden-xs .right .btn {
    position: relative !important;
    padding: 0 0 0 22px !important;
    border-radius: 2px !important;
    text-indent: 0 !important;
    overflow: hidden !important;
  }

  #face .header.hidden-xs .right .btn.user:before,
  #face .header.hidden-xs .right .btn.history:before {
    position: absolute !important;
    left: 12px !important;
    top: 0 !important;
    display: block !important;
    width: 14px !important;
    height: 36px !important;
    margin: 0 !important;
    color: #fff !important;
    font-size: 14px !important;
    line-height: 36px !important;
    text-align: center !important;
  }

  #face .header.hidden-xs .right .btn.user:before {
    content: "◎" !important;
  }

  #face .header.hidden-xs .right .btn.history:before {
    content: "◴" !important;
  }
}

.zhuanti-title .crumb {
  position: relative !important;
  padding-left: 1rem !important;
}

.zhuanti-title .crumb:before {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  top: 50% !important;
  width: .875rem !important;
  height: .875rem !important;
  transform: translateY(-50%) !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: .875rem auto !important;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg' fill='%2371757f'%3E%3Cpath d='M526.635 58.067a21.504 21.504 0 01-27.502.176l474.98 381.505a31.539 31.539 0 1039.496-49.151L538.629 9.004a41.603 41.603 0 00-51.988.234L11.574 398.672a31.539 31.539 0 1039.994 48.8L526.635 58.066zm486.974 506.02l-474.98-381.504a41.603 41.603 0 00-51.988.205L11.574 572.192a31.539 31.539 0 1039.994 48.8l66.763-54.71v361.61a94.645 94.645 0 0094.674 94.645h228.727V775.261a15.799 15.799 0 0115.74-15.798h110.473c8.689 0 15.769 7.08 15.769 15.798v247.276h228.727a94.616 94.616 0 0094.645-94.615V559.465l66.997 53.832a31.539 31.539 0 1039.526-49.21zm-169.63 363.805c0 17.437-14.1 31.539-31.567 31.539H646.82V775.232a78.876 78.876 0 00-78.875-78.905H457.472a78.876 78.876 0 00-78.846 78.905v184.199H213.034c-17.466 0-31.597-14.131-31.597-31.539V514.527l331.447-271.676L843.98 508.793v419.129z'/%3E%3C/svg%3E") !important;
}

/* ================= final biquge2023 button polish ================= */
@media (min-width: 960px) {
  #face .header.hidden-xs .left a {
    display: inline-block !important;
  }

  #face .header.hidden-xs .left p {
    text-align: center !important;
  }

  #face .header.hidden-xs .search {
    height: 36px !important;
  }

  #face .header.hidden-xs .search input {
    height: 32px !important;
    line-height: 32px !important;
  }

  #face .header.hidden-xs .search button {
    height: 36px !important;
    line-height: 36px !important;
    letter-spacing: 4px !important;
    text-indent: 4px !important;
  }

  #face .header.hidden-xs .right {
    gap: 12px !important;
  }

  #face .header .right .btn + .btn:before,
  #face .header.hidden-xs .right .btn:before {
    content: none !important;
    display: none !important;
  }

  #face .header.hidden-xs .right .btn {
    width: 100px !important;
    height: 36px !important;
    padding: 0 0 0 25px !important;
    background-color: #5e7ce0 !important;
    background-repeat: no-repeat !important;
    background-position: 12px 11px !important;
    background-size: 14px 14px !important;
    color: #fff !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 36px !important;
    letter-spacing: 1px !important;
    text-align: center !important;
    text-indent: 0 !important;
    border: 0 !important;
    border-radius: 2px !important;
  }

  #face .header.hidden-xs .right .btn.user {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg' fill='%23fff'%3E%3Cpath d='M1024 512.06C1024 229.906 794.094 0 511.94 0S0 229.906 0 512.06c0 155.41 70.509 295.215 180.2 389.185C274.172 979.616 387.856 1024 513.27 1024c122.754 0 236.439-44.385 325.209-116.224C956.153 803.283 1024 666.138 1024 512.06zm-976.955 0c0-256.03 208.985-465.015 465.015-465.015S977.075 256.03 977.075 512.06c0 125.415-49.585 238.977-130.615 322.669-13.061-61.438-52.246-165.93-172.46-233.777 27.453-33.984 43.054-78.369 43.054-125.414 0-112.354-91.43-203.785-203.784-203.785s-203.784 91.43-203.784 203.785c0 47.045 16.93 90.1 43.054 125.414C231.238 668.8 192.054 773.292 180.321 834.73 97.961 752.369 47.045 637.475 47.045 512.06zm308.276-35.314c0-86.23 70.51-156.74 156.74-156.74s156.738 70.51 156.738 156.74S598.29 633.485 512.06 633.485s-156.739-70.51-156.739-156.74zM222.046 875.123c2.66-37.854 23.461-165.93 164.6-237.768 35.314 27.454 78.369 43.055 125.414 43.055 47.046 0 91.43-16.932 126.745-44.386 139.806 71.84 161.94 197.254 165.93 237.77-79.7 63.978-181.53 103.16-291.224 103.16-111.143.121-211.766-37.734-291.465-101.83z'/%3E%3C/svg%3E") !important;
  }

  #face .header.hidden-xs .right .btn.history {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg' fill='%23fff'%3E%3Cpath d='M64 624a32 32 0 1064 0 32 32 0 10-64 0zm448 344a457.44 457.44 0 01-395.76-229.28 32 32 0 1155.52-32 392 392 0 10-42-281.84l51.68-51.68a32 32 0 0145.28 45.28l-116 116A32 32 0 0156 512a456 456 0 11456 456zm-48-376a32 32 0 01-32-32V320a32 32 0 0164 0v240a32 32 0 01-32 32zm240 0H464a32 32 0 010-64h240a32 32 0 010 64z'/%3E%3C/svg%3E") !important;
  }
}

/* ================= copied biquge2023 home header ================= */
#face,
#face * {
  box-sizing: border-box !important;
}

#face {
  background: #fff !important;
  border: 0 !important;
  box-shadow: none !important;
}

#face .container {
  width: 100% !important;
  margin: 0 auto !important;
}

#face .header.hidden-xs {
  display: none !important;
}

#face .header.header-home {
  display: block !important;
}

@media (min-width: 960px) {
  #face .container,
  .zhuanti-title,
  #wrap .inner,
  #base.footer .container,
  .article #topic,
  .page #topic {
    width: 95% !important;
    max-width: 960px !important;
  }

  #face .header.hidden-xs {
    display: block !important;
    padding: 20px 0 !important;
    border: none !important;
    background: #fff !important;
  }

  #face .header.header-home {
    display: none !important;
  }

  #face .header.hidden-xs .container {
    display: block !important;
    position: static !important;
    height: auto !important;
    min-height: 0 !important;
  }

  #face .header.hidden-xs .left {
    float: left !important;
    position: static !important;
    padding: 0 !important;
    width: auto !important;
    height: auto !important;
    color: #252b3a !important;
    text-align: center !important;
    letter-spacing: 2px !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    line-height: 24px !important;
  }

  #face .header.hidden-xs .left a,
  #face .header.hidden-xs .left a:link,
  #face .header.hidden-xs .left a:visited {
    display: block !important;
    color: #5e7ce0 !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    line-height: 24px !important;
    letter-spacing: 2px !important;
    text-align: center !important;
  }

  #face .header.hidden-xs .left p {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #f60 !important;
    text-align: center !important;
    letter-spacing: 0 !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    line-height: 18px !important;
  }

  #face .header.hidden-xs .right {
    float: right !important;
    position: static !important;
    display: block !important;
    width: auto !important;
    height: auto !important;
    margin-top: 6px !important;
    line-height: normal !important;
  }

  #face .header.hidden-xs .right .btn,
  #face .header.hidden-xs .right .btn:link,
  #face .header.hidden-xs .right .btn:visited {
    float: right !important;
    display: block !important;
    position: static !important;
    margin: 0 0 0 10px !important;
    padding: 0 0 0 20px !important;
    width: 80px !important;
    height: 36px !important;
    border: none !important;
    border-radius: 2px !important;
    background-color: #5e7ce0 !important;
    background-position: 14px 12px !important;
    background-size: 14px 14px !important;
    background-repeat: no-repeat !important;
    color: #fff !important;
    text-align: center !important;
    text-indent: 0 !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 36px !important;
    letter-spacing: 0 !important;
    overflow: hidden !important;
    cursor: pointer !important;
  }

  #face .header.hidden-xs .right .btn:hover {
    background-color: #344899 !important;
    color: #fff !important;
  }

  #face .header .right .btn + .btn:before,
  #face .header.hidden-xs .right .btn:before,
  #face .header.hidden-xs .right .btn:after {
    display: none !important;
    content: none !important;
  }

  #face .header.hidden-xs .right .btn.user {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg style='vertical-align:middle' viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg' fill='%23fff' overflow='hidden'%3E%3Cpath d='M1024 512.06C1024 229.906 794.094 0 511.94 0S0 229.906 0 512.06c0 155.41 70.509 295.215 180.2 389.185 1.33 1.33 2.661 2.66 5.2 3.87C274.172 979.616 387.856 1024 513.27 1024c122.754 0 236.439-44.385 325.209-116.224 5.2-1.33 9.19-5.2 11.73-9.19C956.153 803.283 1024 666.138 1024 512.06zm-976.955 0c0-256.03 208.985-465.015 465.015-465.015S977.075 256.03 977.075 512.06c0 125.415-49.585 238.977-130.615 322.669-13.061-61.438-52.246-165.93-172.46-233.777 27.453-33.984 43.054-78.369 43.054-125.414 0-112.354-91.43-203.785-203.784-203.785s-203.784 91.43-203.784 203.785c0 47.045 16.93 90.1 43.054 125.414C231.238 668.8 192.054 773.292 180.321 834.73 97.961 752.369 47.045 637.475 47.045 512.06zm308.276-35.314c0-86.23 70.51-156.74 156.74-156.74s156.738 70.51 156.738 156.74S598.29 633.485 512.06 633.485s-156.739-70.51-156.739-156.74zM222.046 875.123c2.66-37.854 23.461-165.93 164.6-237.768 35.314 27.454 78.369 43.055 125.414 43.055 47.046 0 91.43-16.932 126.745-44.386 139.806 71.84 161.94 197.254 165.93 237.77-79.7 63.978-181.53 103.16-291.224 103.16-111.143.121-211.766-37.734-291.465-101.83z'/%3E%3C/svg%3E") !important;
  }

  #face .header.hidden-xs .right .btn.history {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg style='vertical-align:middle' viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg' fill='%23fff' overflow='hidden'%3E%3Cpath d='M64 624a32 32 0 1064 0 32 32 0 10-64 0zm448 344a457.44 457.44 0 01-395.76-229.28 32 32 0 1155.52-32 392 392 0 10-42-281.84l51.68-51.68a32 32 0 0145.28 45.28l-116 116A32 32 0 0156 512a456 456 0 11456 456zm-48-376a32 32 0 01-32-32V320a32 32 0 0164 0v240a32 32 0 01-32 32zm0 0a32 32 0 01-32-32V320a32 32 0 0164 0v240a32 32 0 01-32 32zm240 0H464a32 32 0 010-64h240a32 32 0 010 64z'/%3E%3C/svg%3E") !important;
  }

  #face .header.hidden-xs .search {
    float: left !important;
    position: static !important;
    display: flex !important;
    margin-top: 6px !important;
    margin-left: 17% !important;
    width: 35% !important;
    max-width: none !important;
    height: 35px !important;
    transform: none !important;
    align-items: center !important;
  }

  #face .header.hidden-xs .search input {
    flex-grow: 2 !important;
    width: 270px !important;
    height: 32px !important;
    border: 2px solid #5e7ce0 !important;
    border-right: none !important;
    border-radius: 2px 0 0 2px !important;
    background: transparent !important;
    color: #71757f !important;
    text-indent: 10px !important;
    font-size: 14px !important;
    line-height: 32px !important;
    outline: 0 !important;
  }

  #face .header.hidden-xs .search button {
    position: static !important;
    width: 60px !important;
    height: 36px !important;
    border: none !important;
    border-radius: 0 2px 2px 0 !important;
    background: #5e7ce0 !important;
    color: #fff !important;
    text-indent: 0 !important;
    letter-spacing: 0 !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 36px !important;
    cursor: pointer !important;
  }

  #face .header.hidden-xs .search button:before,
  #face .header.hidden-xs .search button:after {
    display: none !important;
    content: none !important;
  }

  #face .header.hidden-xs .search:hover input {
    border-color: #344899 !important;
  }

  #face .header.hidden-xs .search:hover button {
    background: #344899 !important;
  }

  #face .nav {
    display: block !important;
    height: 3rem !important;
    line-height: 3rem !important;
    padding: 0 !important;
    background: #5e7ce0 !important;
    font-size: 1rem !important;
  }

  #face .nav .container,
  #face .nav ul {
    display: flex !important;
    width: 95% !important;
    max-width: 960px !important;
    height: 3rem !important;
    line-height: 3rem !important;
    margin: 0 auto !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: space-between !important;
    align-items: stretch !important;
  }

  #face .nav ul li {
    float: left !important;
    flex: 0 1 auto !important;
    width: auto !important;
    min-width: 0 !important;
    height: 3rem !important;
    line-height: 3rem !important;
    text-align: center !important;
  }

  #face .nav ul li:nth-last-child(2) {
    margin-left: 0 !important;
  }

  #face .nav ul li a,
  #face .nav ul li a:link,
  #face .nav ul li a:visited {
    display: block !important;
    height: 3rem !important;
    line-height: 3rem !important;
    padding: 0 .35rem !important;
    color: #fff !important;
    background: transparent !important;
    font-size: 1rem !important;
    font-weight: 400 !important;
    text-decoration: none !important;
  }

  #face .nav ul li a:hover,
  #face .nav ul li.active a {
    border-radius: 0 !important;
    background: #344899 !important;
    color: #fff !important;
  }
}

/* ================= final copied header button and article breadcrumb fix ================= */
@media (min-width: 960px) {
  #face .header.hidden-xs .right .btn,
  #face .header.hidden-xs .right .btn:link,
  #face .header.hidden-xs .right .btn:visited {
    width: 104px !important;
    padding-left: 28px !important;
    background-position: 14px 11px !important;
    background-size: 14px 14px !important;
    letter-spacing: 1px !important;
  }
}

.article #topic #path,
.page #topic #path {
  position: relative !important;
  padding-left: 1rem !important;
}

.article #topic #path:before,
.page #topic #path:before {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  top: 50% !important;
  width: .875rem !important;
  height: .875rem !important;
  transform: translateY(-50%) !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: .875rem auto !important;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg' fill='%2371757f'%3E%3Cpath d='M526.635 58.067a21.504 21.504 0 01-27.502.176l474.98 381.505a31.539 31.539 0 1039.496-49.151L538.629 9.004a41.603 41.603 0 00-51.988.234L11.574 398.672a31.539 31.539 0 1039.994 48.8L526.635 58.066zm486.974 506.02l-474.98-381.504a41.603 41.603 0 00-51.988.205L11.574 572.192a31.539 31.539 0 1039.994 48.8l66.763-54.71v361.61a94.645 94.645 0 0094.674 94.645h228.727V775.261a15.799 15.799 0 0115.74-15.798h110.473c8.689 0 15.769 7.08 15.769 15.798v247.276h228.727a94.616 94.616 0 0094.645-94.615V559.465l66.997 53.832a31.539 31.539 0 1039.526-49.21zm-169.63 363.805c0 17.437-14.1 31.539-31.567 31.539H646.82V775.232a78.876 78.876 0 00-78.875-78.905H457.472a78.876 78.876 0 00-78.846 78.905v184.199H213.034c-17.466 0-31.597-14.131-31.597-31.539V514.527l331.447-271.676L843.98 508.793v419.129z'/%3E%3C/svg%3E") !important;
}

/* ================= final copied header order and nav spacing ================= */
@media (min-width: 960px) {
  #face .header.hidden-xs .right {
    float: right !important;
    display: flex !important;
    flex-direction: row !important;
    justify-content: flex-end !important;
    gap: 10px !important;
  }

  #face .header.hidden-xs .right .btn,
  #face .header.hidden-xs .right .btn:link,
  #face .header.hidden-xs .right .btn:visited {
    float: none !important;
    margin: 0 !important;
  }

  #face .nav .container,
  #face .nav ul {
    justify-content: flex-start !important;
    gap: 0 !important;
  }

  #face .nav ul li {
    flex: 0 0 72px !important;
    width: 72px !important;
  }

  #face .nav ul li:nth-last-child(2) {
    margin-left: auto !important;
  }

  #face .nav ul li a,
  #face .nav ul li a:link,
  #face .nav ul li a:visited {
    padding: 0 !important;
  }
}

/* ================= final article breadcrumb flow fix ================= */
.article #topic,
.page #topic {
  position: static !important;
  display: block !important;
  width: 95% !important;
  max-width: 960px !important;
  margin: 0 auto !important;
  padding: .75rem 0 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  transform: none !important;
  z-index: auto !important;
}

.article #topic #path,
.page #topic #path {
  position: relative !important;
  display: block !important;
  top: auto !important;
  right: auto !important;
  bottom: auto !important;
  left: auto !important;
  float: none !important;
  clear: both !important;
  width: auto !important;
  height: auto !important;
  margin: 0 0 .75rem !important;
  padding: 0 0 0 1rem !important;
  background: transparent !important;
  color: #71757f !important;
  font-size: .875rem !important;
  line-height: 2rem !important;
  transform: none !important;
  z-index: auto !important;
}

.article #topic #path a,
.page #topic #path a {
  color: #5e7ce0 !important;
  font-size: .875rem !important;
  line-height: 2rem !important;
}

.article #topic #path .path-current,
.page #topic #path .path-current {
  color: #71757f !important;
  pointer-events: none !important;
}

/* ================= mobile biquge2023 header copy ================= */
@media (min-width: 960px) {
  #face .nav ul li.mobile-search {
    display: none !important;
  }
}

@media (max-width: 959px) {
  #face .header.hidden-xs {
    display: none !important;
  }

  #face .header.header-home {
    display: block !important;
    padding: .5rem 1rem !important;
    background: #fff !important;
    border: 0 !important;
  }

  #face .header.header-home .container {
    position: relative !important;
    width: 100% !important;
    height: 2rem !important;
    min-height: 2rem !important;
    padding: 0 !important;
  }

  #face .header.header-home .left {
    position: static !important;
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    height: 2rem !important;
    line-height: 2rem !important;
    text-align: center !important;
  }

  #face .header.header-home .left a,
  #face .header.header-home .left a:link,
  #face .header.header-home .left a:visited {
    display: inline-block !important;
    color: #252b3a !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    line-height: 2rem !important;
    letter-spacing: 0 !important;
  }

  #face .header.header-home .search {
    display: none !important;
  }

  #face .header.header-home .right {
    position: static !important;
    height: 0 !important;
    line-height: 0 !important;
  }

  #face .header.header-home .right .btn {
    position: absolute !important;
    top: 0 !important;
    display: block !important;
    width: 2rem !important;
    height: 2rem !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background-color: transparent !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: 1.25rem 1.25rem !important;
    text-indent: -9999px !important;
    overflow: hidden !important;
  }

  #face .header.header-home .right .btn.user {
    left: 0 !important;
    right: auto !important;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg' fill='%2371757f'%3E%3Cpath d='M1024 512.06C1024 229.906 794.094 0 511.94 0S0 229.906 0 512.06c0 155.41 70.509 295.215 180.2 389.185C274.172 979.616 387.856 1024 513.27 1024c122.754 0 236.439-44.385 325.209-116.224C956.153 803.283 1024 666.138 1024 512.06zm-976.955 0c0-256.03 208.985-465.015 465.015-465.015S977.075 256.03 977.075 512.06c0 125.415-49.585 238.977-130.615 322.669-13.061-61.438-52.246-165.93-172.46-233.777 27.453-33.984 43.054-78.369 43.054-125.414 0-112.354-91.43-203.785-203.784-203.785s-203.784 91.43-203.784 203.785c0 47.045 16.93 90.1 43.054 125.414C231.238 668.8 192.054 773.292 180.321 834.73 97.961 752.369 47.045 637.475 47.045 512.06zm308.276-35.314c0-86.23 70.51-156.74 156.74-156.74s156.738 70.51 156.738 156.74S598.29 633.485 512.06 633.485s-156.739-70.51-156.739-156.74zM222.046 875.123c2.66-37.854 23.461-165.93 164.6-237.768 35.314 27.454 78.369 43.055 125.414 43.055 47.046 0 91.43-16.932 126.745-44.386 139.806 71.84 161.94 197.254 165.93 237.77-79.7 63.978-181.53 103.16-291.224 103.16-111.143.121-211.766-37.734-291.465-101.83z'/%3E%3C/svg%3E") !important;
  }

  #face .header.header-home .right .btn.history {
    left: auto !important;
    right: 0 !important;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg' fill='%2371757f'%3E%3Cpath d='M64 624a32 32 0 1064 0 32 32 0 10-64 0zm448 344a457.44 457.44 0 01-395.76-229.28 32 32 0 1155.52-32 392 392 0 10-42-281.84l51.68-51.68a32 32 0 0145.28 45.28l-116 116A32 32 0 0156 512a456 456 0 11456 456zm-48-376a32 32 0 01-32-32V320a32 32 0 0164 0v240a32 32 0 01-32 32zm240 0H464a32 32 0 010-64h240a32 32 0 010 64z'/%3E%3C/svg%3E") !important;
  }

  #face .nav,
  #face .nav ul {
    height: auto !important;
    min-height: 0 !important;
    line-height: 2rem !important;
    background: #5e7ce0 !important;
  }

  #face .nav ul {
    display: flex !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: .35rem .75rem .55rem !important;
    flex-wrap: wrap !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
    box-sizing: border-box !important;
  }

  #face .nav ul li,
  #face .nav ul li.mobile-search {
    display: block !important;
    flex: 0 0 calc(100% / 6) !important;
    width: calc(100% / 6) !important;
    height: 2rem !important;
    line-height: 2rem !important;
    text-align: center !important;
  }

  #face .nav ul li:nth-last-child(2) {
    margin-left: 0 !important;
  }

  #face .nav ul li a,
  #face .nav ul li a:link,
  #face .nav ul li a:visited {
    display: block !important;
    height: 2rem !important;
    line-height: 2rem !important;
    padding: 0 !important;
    color: #fff !important;
    background: transparent !important;
    font-size: .9375rem !important;
    font-weight: 400 !important;
    white-space: nowrap !important;
  }
}

/* ================= mobile biquge2023 size match ================= */
@media (max-width: 959px) {
  #face .header.header-home {
    padding: .65rem 1rem !important;
  }

  #face .header.header-home .container {
    height: 2.25rem !important;
    min-height: 2.25rem !important;
  }

  #face .header.header-home .left {
    height: 2.25rem !important;
    line-height: 2.25rem !important;
  }

  #face .header.header-home .left a,
  #face .header.header-home .left a:link,
  #face .header.header-home .left a:visited {
    font-size: 1.125rem !important;
    line-height: 2.25rem !important;
  }

  #face .header.header-home .right .btn {
    width: 2.25rem !important;
    height: 2.25rem !important;
    background-size: 1.45rem 1.45rem !important;
  }

  #face .nav,
  #face .nav ul {
    line-height: 2.35rem !important;
  }

  #face .nav ul {
    padding: .45rem .75rem .7rem !important;
  }

  #face .nav ul li,
  #face .nav ul li.mobile-search {
    height: 2.35rem !important;
    line-height: 2.35rem !important;
  }

  #face .nav ul li a,
  #face .nav ul li a:link,
  #face .nav ul li a:visited {
    height: 2.35rem !important;
    line-height: 2.35rem !important;
    font-size: 1rem !important;
  }
}

/* ================= topic nav emphasis and pc spacing ================= */
#face .nav ul li a.nav-zhuanti,
#face .nav ul li a.nav-zhuanti:link,
#face .nav ul li a.nav-zhuanti:visited,
#face .nav ul li a.nav-zhuanti:hover {
  color: #f00 !important;
  font-weight: 700 !important;
}

@media (min-width: 960px) {
  #face .nav ul li:nth-last-child(3) {
    margin-left: auto !important;
  }

  #face .nav ul li:nth-last-child(2) {
    margin-left: 0 !important;
  }

  #face .nav ul li:nth-last-child(3),
  #face .nav ul li:nth-last-child(2) {
    flex: 0 0 72px !important;
    width: 72px !important;
  }
}

/* ================= mobile topic list text size ================= */
@media (max-width: 959px) {
  .zhuanti-title .crumb,
  .zhuanti-title .crumb a,
  .zhuanti-title .crumb span {
    font-size: 15px !important;
    line-height: 2rem !important;
  }

  .article #topic #path,
  .article #topic #path a,
  .article #topic #path .path-current,
  .page #topic #path,
  .page #topic #path a,
  .page #topic #path .path-current {
    font-size: 15px !important;
    line-height: 2rem !important;
  }

  article.log .pane h3,
  article.log .pane h3 a {
    font-size: 20px !important;
    line-height: 1.35 !important;
  }

  article.log .pane > div {
    font-size: 16px !important;
    line-height: 1.75 !important;
  }
}

/* ================= mobile topic list compact text ================= */
@media (max-width: 959px) {
  article.log .pane h3,
  article.log .pane h3 a {
    font-size: 17px !important;
    line-height: 1.35 !important;
  }

  article.log .pane > div {
    display: -webkit-box !important;
    min-height: 48px !important;
    max-height: 48px !important;
    height: 48px !important;
    font-size: 14px !important;
    line-height: 24px !important;
    overflow: hidden !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
  }
}
