.post_title {
  display: block;
  word-break: break-all;
}

.page-header {
  transition: background-color 1s;
}
.page-header-content {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 70vh;
  position: relative;
  bottom: 15vh;
  width: 100%;
}

.page-header .badge {
  font-size: 0.875rem;
  text-transform: capitalize;
}

.post_banner_img_container {
  width: 80%;
  left: 10%;
  position: relative;
  top: -15vh;
}

@media (max-width: 375px) {
  .post_banner_img_container {
    width: 100%;
    left: 0;
  }
}

.post_img_section {
  padding-top: 0;
}

.post_banner_img {
  height: 0;
  background-position: center center;
  background-size: cover;
  width: 100%;
  padding-top: 55%;
  display: block;
  border-radius: 1rem !important;
}

.post_banner_img:hover {
  box-shadow: 0rem 0rem 1.5rem var(--bgColor);
}

.post_content {
  word-break: break-all;
  padding: 0 0.5rem 0;
}

.post_content p {
  font-size: 1rem;
  transition: all 1s ease-out;
}

.post_content img {
  cursor: zoom-in;
  border-radius: 0.375rem;
  margin: 1.5rem auto;
  max-width: 100%;
  height: auto;
}
.post_content img:hover {
  box-shadow: 0rem 0rem 1.5rem var(--bgColor);
}

.post_content h1,
h2,
h3,
h4,
h5,
h6 {
  /* pointer-events: none; */
  font-weight: 600;
  padding-top: 1rem;
}

.post_content h1:before,
h2:before,
h3:before,
h4:before,
h5:before,
h6:before {
  content: "➜";
  cursor: pointer;
  /* pointer-events: auto; */
  color: var(--bgColor);
}

.post_content h1:hover:before,
h2:hover:before,
h3:hover:before,
h4:hover:before,
h5:hover:before,
h6:hover:before {
  content: "✈";
}

.post_content .awesome-repos-badge img {
  cursor: auto;
  border-radius: 0;
  max-width: 100%;
  margin: 0px 5px 0px 0px;
}
.post_content .awesome-repos-badge img:hover {
  box-shadow: 0rem 0rem;
}

/* for tocbot */
#toc {
  font-size: 1rem;
}

#tocbot > ol {
  padding-left: 0;
}

.toc-title {
  font-size: 1.5rem;
  font-weight: 400;
}

#tocbot ol {
  list-style: none;
}

.tocbot-list ol {
  list-style: none;
  padding-left: 0.9375rem;
}

.tocbot-link {
  color: #34495e;
}

.tocbot-active-link {
  font-weight: 600;
  color: var(--bgColor);
}

.tocbot-is-collapsible {
  max-height: 62.5rem;
  overflow: hidden;
  transition: all 300ms ease-in-out;
}

.tocbot-is-collapsed {
  max-height: 0;
}

.comments {
  width: 80%;
  margin: 0 auto;
}


/* 表格 */
table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 14px;
}
table > tbody > tr:nth-of-type(odd) {
  background-color: #f9f9f9;
}
table > tbody > tr:hover {
  background-color: #f5f5f5;
}
caption,
th,
td {
  padding: 8px;
  text-align: left;
  vertical-align: middle;
  font-weight: normal;
}
th,
td {
  border: 1px solid #ddd;
  border-bottom: 3px solid #ddd;
}
th {
  padding-bottom: 10px;
  font-weight: 700;
}
td {
  border-bottom-width: 1px;
}
