* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body,
ul,
ol {
  margin: 0;
  padding: 0;
}

body {
  background: #f4f6f8;
  color: #263241;
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.75;
}

ul {
  list-style: none;
}

ol li {
  list-style: decimal;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  padding: 0;
  line-height: 1.35;
}

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

a:hover {
  color: #0f8a7a;
}

img,
video {
  max-width: 100%;
}

.global-width {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  height: 70px;
}

.infos.fixed {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid #dfe5ec;
  backdrop-filter: blur(12px);
}

.nav-shell {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #111827;
  color: #8ee6d2;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-copy {
  display: grid;
  gap: 1px;
  min-width: 0;
}

.fixed-title {
  max-width: 320px;
  color: #111827;
  font-size: 20px;
  font-weight: 800;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-copy span {
  color: #6b7280;
  font-size: 12px;
  text-transform: uppercase;
}

.fixed-menus {
  display: block;
}

.menu {
  display: flex;
  align-items: center;
  gap: 18px;
}

.menu li {
  position: relative;
  font-size: 14px;
  font-weight: 700;
}

.current-menu-item,
.menu li:hover {
  color: #0f8a7a;
}

ul.drop {
  display: none;
  min-width: 132px;
  position: absolute;
  top: 100%;
  left: -14px;
  padding: 8px 0;
  background: #fff;
  border: 1px solid #dfe5ec;
  box-shadow: 0 18px 42px rgba(17, 24, 39, .12);
}

li.menu-item:hover ul.drop {
  display: block;
}

#menu-header ul.drop li {
  display: block;
  padding: 0;
}

#menu-header ul.drop li a {
  display: block;
  padding: 8px 14px;
  white-space: nowrap;
}

.search-nav {
  margin-left: 4px;
}

.search-btn,
#mnavh {
  border: 0;
  background: #e8f7f3;
  color: #0f766e;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.search-btn {
  height: 34px;
  padding: 0 14px;
  border-radius: 8px;
}

.search {
  display: none;
  position: absolute;
  top: 46px;
  right: 0;
  width: 280px;
  padding: 8px;
  background: #fff;
  border: 1px solid #dfe5ec;
  box-shadow: 0 18px 42px rgba(17, 24, 39, .12);
}

.search.active {
  display: block;
}

.search form {
  position: relative;
}

.search-ipt {
  width: 100%;
  height: 40px;
  padding: 0 42px 0 12px;
  border: 1px solid #dfe5ec;
  outline: 0;
  color: #263241;
}

.search-ipt:focus {
  border-color: #0f8a7a;
}

.search button {
  width: 38px;
  height: 38px;
  border: 0;
  background: transparent;
  cursor: pointer;
  position: absolute;
  top: 1px;
  right: 1px;
}

.search_ico span {
  position: relative;
  display: block;
  width: 16px;
  height: 16px;
  margin: auto;
  border: 2px solid #0f766e;
  border-radius: 50%;
}

.search_ico span::after {
  content: "";
  width: 8px;
  height: 2px;
  position: absolute;
  right: -7px;
  bottom: -4px;
  background: #0f766e;
  transform: rotate(45deg);
}

#mnavh {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 8px;
}

.navicon,
.navicon::before,
.navicon::after {
  display: block;
  width: 22px;
  height: 2px;
  background: #0f766e;
  transition: transform .2s ease, opacity .2s ease;
}

.navicon {
  position: relative;
  margin: auto;
}

.navicon::before,
.navicon::after {
  content: "";
  position: absolute;
  left: 0;
}

.navicon::before {
  top: -7px;
}

.navicon::after {
  top: 7px;
}

.open .navicon {
  background: transparent;
}

.open .navicon::before {
  top: 0;
  transform: rotate(45deg);
}

.open .navicon::after {
  top: 0;
  transform: rotate(-45deg);
}

.home-hero {
  padding: 42px 0 18px;
  background: linear-gradient(135deg, #111827 0%, #18322f 62%, #25584f 100%);
  color: #fff;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
  align-items: end;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: #8ee6d2;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-copy h1 {
  font-size: 38px;
}

.hero-copy p {
  max-width: 680px;
  margin: 12px 0 0;
  color: #d7f5ef;
}

.hero-panel {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .08);
}

.hero-panel span,
.hero-panel strong {
  display: block;
}

.hero-panel span {
  color: #8ee6d2;
  font-size: 13px;
}

.hero-panel strong {
  margin-top: 6px;
  font-size: 18px;
}

.content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 22px;
  margin-top: 22px;
}

.box {
  position: relative;
  padding: 22px;
  background: #fff;
  border: 1px solid #dfe5ec;
  border-radius: 8px;
}

.boxmt,
.post-item + .post-item {
  margin-top: 16px;
}

.game-ad {
  margin-bottom: 16px;
  padding: 10px;
  text-align: center;
  background: #fff;
  border: 1px solid #dfe5ec;
  border-radius: 8px;
}

.game-ad img,
.article-ad img {
  max-height: 130px;
  width: auto;
  object-fit: contain;
  vertical-align: middle;
}

.article-ad {
  margin-bottom: 22px;
  text-align: center;
}

.post-kicker {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: #0f766e;
  font-size: 13px;
  font-weight: 800;
}

.pin {
  padding: 2px 7px;
  border-radius: 6px;
  background: #fff1d6;
  color: #9a5b00;
}

.post .post-title {
  color: #111827;
  font-size: 23px;
  font-weight: 800;
}

.post .post-title a:hover {
  color: #0f8a7a;
}

.post h1.post-title {
  color: #111827;
}

.post .post-meta {
  margin-top: 10px;
  color: #667085;
  font-size: 13px;
}

.dotted {
  color: #b8c2cc;
  margin: 0 7px;
}

.post .post-excerpt {
  margin-top: 12px;
  color: #3d4b5c;
  word-break: break-word;
}

.post .post-excerpt p {
  margin: 0;
}

.read-more {
  display: inline-block;
  margin-top: 14px;
  color: #0f766e;
  font-weight: 800;
}

.detail-post {
  padding: 28px;
}

.post .align-center {
  text-align: center;
}

.post .detail-title {
  font-size: 30px;
}

.post .post-content {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid #e6ebf0;
  color: #263241;
  word-break: break-word;
}

.post .post-content p {
  margin: 0 0 20px;
}

.post .post-content h2,
.post .post-content h3,
.post .post-content h4,
.post .post-content h5,
.post .post-content h6 {
  margin: 1.4em 0 .7em;
  color: #111827;
}

.post .post-content img,
.post .post-content video {
  height: auto !important;
  border-radius: 6px;
}

.post .post-content a {
  color: #0e6db1;
  text-decoration: underline;
}

.post .post-content table,
.post .post-excerpt table {
  display: block;
  max-width: 100% !important;
  margin: 1rem 0;
  overflow-x: auto;
  border-collapse: collapse;
}

.post .post-content table td,
.post .post-content table th,
.post .post-excerpt table td,
.post .post-excerpt table th {
  border: 1px solid #dfe5ec;
  padding: .6em 1em;
}

.post .post-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid #e6ebf0;
}

.post .post-footer a {
  padding: 3px 9px;
  border-radius: 6px;
  background: #eef7f5;
  color: #0f766e;
}

.nearbypost {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.nearbypost div {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nearbypost .alignright {
  text-align: right;
}

.nearbypost .alignleft a::before {
  content: "上一篇：";
  color: #667085;
}

.nearbypost .alignright a::before {
  content: "下一篇：";
  color: #667085;
}

.pagebar {
  margin: 20px 0;
  text-align: center;
}

.page-numbers {
  display: inline-flex;
  min-width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  margin: 0 3px 6px;
  padding: 0 10px;
  background: #fff;
  border: 1px solid #dfe5ec;
  border-radius: 7px;
  color: #263241;
}

.page-numbers:hover,
span.page-numbers {
  background: #0f766e;
  border-color: #0f766e;
  color: #fff;
}

.aside .widget + .widget {
  margin-top: 16px;
}

.aside .widget .title {
  color: #111827;
  font-size: 18px;
  font-weight: 800;
}

.aside .widget ul {
  margin-top: 12px;
}

.aside .widget li {
  padding: 7px 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  border-bottom: 1px solid #eef1f4;
}

#divTags li {
  display: inline-block;
  margin: 0 6px 8px 0;
  padding: 0;
  border: 0;
}

#divTags a {
  display: inline-block;
  padding: 4px 9px;
  border-radius: 6px;
  background: #eef7f5;
  color: #0f766e;
  font-size: 13px;
}

#divTags .tag-count,
#divCatalog ul li ul,
#divNavBar ul li ul {
  display: none;
}

#divSearchPanel form {
  margin-top: 14px;
}

#divSearchPanel input[type="text"] {
  width: 68%;
  height: 38px;
  padding: 5px 10px;
  border: 1px solid #dfe5ec;
}

#divSearchPanel input[type="submit"] {
  width: 28%;
  height: 38px;
  border: 1px solid #0f766e;
  background: #0f766e;
  color: #fff;
  cursor: pointer;
}

.footer {
  margin-top: 28px;
  padding: 24px 0;
  background: #111827;
  color: #cbd5e1;
  font-size: 13px;
}

.footer a {
  color: #8ee6d2;
}

.footer .footer-box {
  text-align: center;
}

#go-to-top {
  width: 46px;
  height: 46px;
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #0f766e;
  color: #fff;
  cursor: pointer;
}

#go-to-top::before {
  content: "TOP";
  font-size: 12px;
  font-weight: 800;
}

#go-to-top.active {
  display: flex;
}

blockquote {
  margin: 20px 0;
  padding: 16px 18px;
  border-left: 4px solid #0f766e;
  background: #f6faf9;
  color: #344256;
}

ul.msg {
  margin: 22px 0;
  padding-bottom: 22px;
  border-bottom: 1px solid #e6ebf0;
  word-wrap: break-word;
}

img.avatar {
  width: 48px;
  height: 48px;
  float: left;
  margin: 0 14px 0 0;
  border-radius: 50%;
}

li.msgarticle {
  padding: 8px 0 0 62px;
}

.jz-comment h3,
.jz-comments h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.jz-comment-box {
  position: relative;
  margin-bottom: 8px;
  padding: 4px;
  background: #fff;
  border: 1px solid #dfe5ec;
}

.jz-comment input,
.jz-comment textarea {
  width: 100%;
  border: 0;
  font: inherit;
  outline: 0;
}

.jz-comment input {
  height: 34px;
  padding-left: 8px;
}

.jz-comment textarea {
  min-height: 120px;
  padding: 8px;
}

.jz-comment label,
.jz-comments label {
  display: none;
}

.jz-comment-ul4 {
  width: 49.5%;
  float: left;
}

.jz-comment .jz-comment-ul4:nth-child(2n) {
  float: right;
}

.jz-comment-ul3 {
  width: 32.66%;
  float: left;
}

.jz-comment .jz-comment-ul3-2 {
  margin: 0 1%;
}

.jz-comment-box img.jz-code {
  height: 34px;
  width: auto;
  position: absolute;
  top: 4px;
  right: 4px;
}

.jz-comment-box input.button {
  width: 108px;
  height: 42px;
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 0;
  background: #0f766e;
  color: #fff;
  cursor: pointer;
}

.jz-comment-textarea {
  width: 100%;
  clear: both;
}

.reply-frm {
  margin-top: 15px;
}

@media (max-width: 980px) {
  .global-width {
    width: min(100% - 28px, 760px);
  }

  .site-header {
    height: 64px;
  }

  .nav-shell {
    min-height: 64px;
  }

  #mnavh {
    display: inline-flex;
  }

  .fixed-menus {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    padding: 10px 14px 16px;
    background: #fff;
    border-bottom: 1px solid #dfe5ec;
  }

  .fixed-menus.active {
    display: block;
  }

  .menu {
    display: grid;
    gap: 0;
  }

  .menu li {
    border-bottom: 1px solid #eef1f4;
  }

  .menu li a {
    display: block;
    padding: 11px 0;
  }

  ul.drop {
    position: static;
    display: none;
    border: 0;
    box-shadow: none;
    padding: 0 0 0 14px;
  }

  li.menu-item:hover ul.drop {
    display: block;
  }

  .search-nav {
    border-bottom: 0;
  }

  .search-btn {
    width: 100%;
    margin-top: 10px;
  }

  .search {
    position: static;
    width: 100%;
    margin-top: 8px;
    box-shadow: none;
  }

  .hero-grid,
  .content {
    grid-template-columns: 1fr;
  }

  .home-hero {
    padding: 32px 0 14px;
  }

  .hero-copy h1 {
    font-size: 30px;
  }

  .post .detail-title {
    font-size: 25px;
  }

  .nearbypost {
    grid-template-columns: 1fr;
  }

  .nearbypost .alignright {
    text-align: left;
  }
}

@media (max-width: 560px) {
  .global-width {
    width: min(100% - 20px, 520px);
  }

  .fixed-title {
    max-width: 210px;
    font-size: 18px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .box,
  .detail-post {
    padding: 16px;
  }

  .post .post-title {
    font-size: 20px;
  }

  .post .detail-title {
    font-size: 23px;
  }

  .hero-copy h1 {
    font-size: 26px;
  }

  .jz-comment-ul3,
  .jz-comment-ul4 {
    width: 100%;
    float: none;
  }
}
