* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
  color: #383838;
  background: #fff;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 72px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.site-nav-inner {
  width: 1200px;
  max-width: calc(100% - 40px);
  height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-nav .logo {
  width: 132px;
  height: 39px;
  display: block;
  flex-shrink: 0;
}

.site-nav-menu {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 72px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 16px;
}

.site-nav-menu > li {
  position: relative;
  margin: 0 30px;
  height: 72px;
}

.site-nav-menu > li > a,
.site-nav-menu > li > .nav-label {
  display: inline-block;
  height: 72px;
  line-height: 72px;
  color: #383838;
  font-weight: 500;
  cursor: pointer;
  position: relative;
}

.site-nav-menu > li > a::after,
.site-nav-menu > li > .nav-label::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: #c81f26;
  transform: scaleX(0);
  transition: transform 0.3s ease-in-out;
}

.site-nav-menu > li:hover > a::after,
.site-nav-menu > li:hover > .nav-label::after,
.site-nav-menu > li.is-active > a::after,
.site-nav-menu > li.is-active > .nav-label::after {
  transform: scaleX(1);
}

.site-nav-submenu {
  position: absolute;
  top: 72px;
  left: 50%;
  transform: translateX(-50%) scaleY(0);
  transform-origin: top center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease-in-out, transform 0.3s ease-in-out, visibility 0.3s;
  background: rgba(255, 255, 255, 0.92);
  padding: 34px 24px;
  margin: 0;
  list-style: none;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.site-nav-menu > li:hover .site-nav-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) scaleY(1);
}

.site-nav-submenu li + li {
  margin-top: 24px;
}

.site-nav-submenu a {
  font-size: 16px;
  color: #808080;
  white-space: nowrap;
}

.site-nav-submenu a:hover {
  color: #000;
}

.site-nav-user {
  position: relative;
  flex-shrink: 0;
  margin-left: 8px;
}

.site-nav-user-trigger {
  width: 22px;
  height: 22px;
  cursor: pointer;
  display: block;
}

.site-nav-user-panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 120px;
  padding: 5px 0 8px;
  background: #fff;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
}

.site-nav-user:hover .site-nav-user-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-nav-user-panel img {
  width: 120px;
  height: 120px;
  display: block;
  margin: 0 auto;
}

.site-nav-user-panel p {
  margin: 0;
  font-size: 12px;
  color: #383838;
}

.site-nav-phone-btn {
  display: none;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.site-nav-phone-btn img {
  width: 20px;
  height: 15px;
}

.site-nav-phone-menu {
  display: none;
}

.nav-spacer {
  height: 72px;
}

.control {
  width: 100%;
  min-height: 68px;
  background: #fbfbfb;
  box-shadow: 0 1px 0 #f4f4f4;
}

.control-inner {
  width: 1200px;
  max-width: calc(100% - 40px);
  min-height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 16px;
  font-size: 16px;
  line-height: 23px;
  color: #383838;
}

.crumb-arrow {
  flex-shrink: 0;
}

.section {
  width: 1200px;
  max-width: calc(100% - 40px);
  margin: 0 auto;
}

.detail {
  margin: 0 35px 24px 20px;
}

.detail .title {
  margin-top: 40px;
  width: 100%;
  border-bottom: 0.5px solid rgba(128, 128, 128, 1);
  margin-bottom: 20px;
}

.detail .name {
  margin: 0;
  padding: 15px 0;
  font-size: 46px;
  font-weight: 500;
  letter-spacing: 2px;
  line-height: 52px;
  color: #000;
  text-align: left;
}

.detail .meta-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 50px;
  margin-bottom: 8px;
}

.detail .time {
  font-size: 14px;
  font-weight: 400;
  color: rgba(128, 128, 128, 1);
}

.detail .time.source a {
  color: #42a9f6;
}

.qs-html-render {
  font-size: 16px;
  line-height: 1.8;
  color: #383838;
  word-break: break-word;
}

.qs-html-render p {
  margin: 0 0 1em;
}

.qs-html-render img {
  max-width: 100%;
  height: auto;
}

.disclaimer {
  border-radius: 4px;
  padding: 20px;
  font-size: 13px;
  color: #c7c7c7;
  line-height: 24px;
  margin-top: 30px;
  text-align: center;
}

.site-footer {
  margin-top: 48px;
  background: #f5f5f5;
  padding: 24px 0 32px;
}

.site-footer-inner {
  width: 1200px;
  max-width: calc(100% - 40px);
  margin: 0 auto;
  font-size: 12px;
  line-height: 22px;
  color: #808080;
  text-align: center;
}

.site-footer-line {
  margin: 0 0 8px;
}

.site-footer a {
  color: #808080;
}

.site-footer a:hover {
  color: #383838;
}

@media screen and (min-width: 769px) and (max-width: 1225px) {
  .site-nav-menu > li {
    margin: 0 16px;
  }

  .site-nav-submenu {
    display: none;
  }
}

.place-icon {
  width: 14px;
  height: 14px;
  vertical-align: middle;
  margin-right: 4px;
}

@media screen and (max-width: 768px) {
  .site-nav {
    height: 3.072rem;
  }

  .site-nav-inner {
    height: 3.072rem;
    justify-content: center;
    position: relative;
  }

  .nav-spacer {
    height: 3.072rem;
  }

  .site-nav .logo {
    width: 6.56rem;
    height: 1.984rem;
  }

  .site-nav-phone-btn {
    display: block;
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
  }

  .site-nav-menu,
  .site-nav-user {
    display: none;
  }

  .site-nav-phone-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1100;
    background: rgba(255, 255, 255, 0.96);
    padding: 3.5rem 1.5rem 1.5rem;
    overflow-y: auto;
  }

  .site-nav-phone-menu.is-open {
    display: block;
  }

  .site-nav-phone-close {
    position: absolute;
    top: 1.28rem;
    left: 1.28rem;
    width: 0.768rem;
    height: 0.768rem;
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
  }

  .site-nav-phone-list {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .site-nav-phone-list > li {
    margin: 8px 0;
    font-size: 0.896rem;
    color: #383838;
  }

  .site-nav-phone-list a {
    display: block;
    padding: 4px 0;
  }

  .site-nav-phone-sub {
    margin: 8px 0 0 16px;
    padding: 0;
    list-style: none;
  }

  .site-nav-phone-sub a {
    color: #808080;
    font-size: 0.832rem;
  }

  .control {
    display: none;
  }

  .detail {
    width: 21.696rem;
    margin: 0.832rem auto 0;
  }

  .detail .name {
    font-size: 1.472rem;
    line-height: 1.984rem;
    letter-spacing: 0.064rem;
    padding-bottom: 0.48rem;
  }

  .detail .time {
    font-size: 0.768rem;
    line-height: 1.75rem;
  }

  .detail .meta-row {
    gap: 0 16px;
  }
}
