html,
body {
  height: 100%;
}
body {
  background-color: #c5c2a5;
  background-image: linear-gradient(90deg, #c6c2a5 2px, rgba(255,255,255,0) 0), linear-gradient(180deg, #c6c2a5 2px, #d1cdb2 0);
  background-attachment: fixed;
  background-size: 0.4rem 0.4rem;
  margin: 0;
}
body > * ::selection {
  background-color: #4a473e;
  color: #e7e1c7;
}
#container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0 2% 0 2%;
  min-height: 100%;
}
#header {
  margin-top: 1.5%;
}
#main {
  flex: 1;
  margin: 2em 0;
  display: flex;
  flex-direction: row;
  gap: 4em;
}
#main .right-content {
  width: 24%;
  position: sticky;
  top: 16px;
  align-self: flex-start;
  flex-shrink: 0;
}
#footer {
  margin-bottom: 1%;
}
span::selection {
  background-color: #4a473e;
  color: #e7e1c7;
}
.bottom-declaration {
  margin-left: -2%;
  margin-top: 1.5em;
  width: 104%;
}
.bottom-declaration-line {
  border: 1.3px solid #000;
}
.bottom-declaration-dotted {
  background-image: linear-gradient(90deg, #333 14%, rgba(255,255,255,0) 0);
  background-repeat: repeat-x;
  background-size: 100px 4px;
  width: 100%;
  height: 4px;
  margin: 0 -2% 0;
}
* {
  scrollbar-width: thin;
  scrollbar-color: #4a473e transparent;
}
*::-webkit-scrollbar-corner {
  background-color: #c5c2a5;
}
*::-webkit-scrollbar-thumb {
  border-radius: 0px;
  background: #4a473e;
}
*::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
img {
  transition: filter 0.2s linear 0s !important;
}
img[data-src]:not(.loaded) {
  filter: blur(10px) brightness(1) opacity(0.4);
}
img[data-src].error {
  filter: none;
}
.v-line {
  float: left;
  width: 1.3px;
  height: auto;
  background: rgba(0,0,0,0.16);
  margin: 2px;
}
.h-line {
  float: left;
  width: auto;
  height: 1.3px;
  background: rgba(0,0,0,0.16);
  margin: 2px;
}
header .menu-items-container {
  display: flex;
  flex-direction: row;
  gap: 16px;
  height: 2.5rem;
  justify-content: space-between;
  position: relative;
  width: 100%;
}
.footer-content {
  display: flex;
  flex-direction: row;
  gap: 16px;
  height: auto;
  justify-content: left;
  width: 100%;
  background-color: rgba(231,225,199,0.75);
  color: #4a473e;
}
.footer-content .footer-info {
  padding: 8px 0;
  display: flex;
  flex-direction: row;
  gap: 24px;
  justify-content: left;
}
.footer-content .footer-info a {
  text-decoration: none;
  color: #4a473e;
}
.footer-content .footer-info a:hover {
  text-decoration: underline;
}
.footer-content .footer-info span {
  font-size: 16px;
}
.footer-content .footer-info .bold {
  font-weight: bold;
  font-size: 20px;
}
.footer-content .footer-info .small {
  font-size: 14px;
}
.footer-content .footer-info .normal {
  font-size: 16px;
}
.footer-content .footer-info .medium {
  font-size: 18px;
}
.footer-content .footer-info .icp {
  margin-top: 8px;
  line-height: 1em;
}
.footer-content .footer-info .time {
  font-weight: bold;
}
footer .left-declaration .declaration {
  background-color: #4a473e;
}
.main-content {
  word-wrap: break-word;
  overflow-wrap: break-word;
  color: #4a473e;
  margin-bottom: 3em;
}
.main-content h1 {
  margin-top: 0.4em;
  font-size: 2.25em;
}
.main-content h1,
.main-content h2,
.main-content h3,
.main-content h4,
.main-content h5,
.main-content h6 {
  color: #000;
}
.main-content figure {
  margin: 0;
  font-size: 16px;
}
.main-content figure table {
  border-style: none;
}
.main-content figure td {
  border: none !important;
  padding: 0 !important;
}
.main-content figure pre {
  padding: 0 10px;
  padding-right: 10px;
  padding-left: 10px;
  font-family: 'Consolas', 'Courier New', Courier, monospace;
}
.main-content figure td.gutter {
  background-color: #b1ab8f;
  color: #fbf4d6;
  text-align: right;
  user-select: none;
  position: sticky;
  left: 0;
}
.main-content figure td.code {
  background-color: #f3f0e3;
  width: 100%;
}
.main-content table {
  display: block;
  overflow: scroll;
  border: none;
  border-collapse: collapse;
}
.main-content table th,
.main-content table td {
  padding: 4px 8px;
  border: solid;
}
.main-content code {
  font-family: 'Consolas', 'Courier New', Courier, monospace;
  font-size: 16px;
  padding: 2px 4px;
  background: #d1d5d0;
  color: #4a473e;
  border-radius: 6px;
}
.main-content blockquote {
  background-color: rgba(189,203,215,0.53);
  color: #4a473e;
  margin: 0 0 16px 0;
  padding: 4px 24px;
  justify-content: center;
  display: flex;
  flex-direction: column;
  border-left: 4px solid #4a473e;
  font-size: 16px;
}
.main-content blockquote p {
  margin: 16px 0;
  text-indent: initial;
}
.main-content blockquote code {
  background: rgba(180,175,154,0.45);
}
.main-content a {
  text-decoration: none;
  color: #3d46c4;
}
.main-content a:hover {
  text-decoration: underline;
}
.main-content .img-wrapper {
  display: contents;
  cursor: zoom-in;
}
.main-content img {
  display: block;
  margin: 20px auto 20px;
  max-width: 100%;
}
.main-content p {
  line-height: 1.45em;
  margin: 1.35em 0;
}
.main-content iframe {
  margin: 0 0 20px;
}
.main-content ul {
  margin: 0;
}
.main-content ol ol,
.main-content ul ol,
.main-content ol ul,
.main-content ul ul {
  padding-left: 20px;
}
.main-content ol li,
.main-content ul li {
  margin: 8px 0;
  line-height: 1.5em;
}
.main-content ol p,
.main-content ul p {
  margin: 4px 0 4px;
  line-height: 1.5em;
}
.main-content ol figure,
.main-content ul figure {
  line-height: normal;
}
.main-content > :last-child {
  margin-bottom: 0 !important;
}
.main-content ol p,
.main-content ul p {
  margin: 4px 0 4px;
}
.main-content li::marker {
  transition: all 0.2s linear 0s;
  font-weight: 600;
  font-size: 1.05em;
}
.main-content li:hover::marker {
  color: #27af05;
}
.main-content ul > li {
  list-style-type: circle;
}
.markdown-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 16px;
  flex: 1;
  overflow: auto;
  width: 97%;
}
.markdown-container .article-container {
  background-color: #e7e1c7;
  height: fit-content;
  padding: 1em 40px;
  display: flex;
  flex-direction: column;
  width: 100%;
  overflow-x: hidden;
  justify-content: space-between;
  font-size: 18px;
}
.markdown-container .article-header {
  display: flex;
  flex-direction: row;
  margin: 1em 0 1em;
  gap: 3em;
  align-items: flex-start;
}
.markdown-container .article-header .cover-container {
  width: 50%;
}
.markdown-container .article-header .cover-container img.post-cover {
  width: 100%;
  object-fit: cover;
  transition: all 0.2s linear 0s;
  border-color: rgba(74,71,62,0.569);
  border-style: solid;
  border-width: 2px;
}
.markdown-container .article-header .article-info {
  display: flex;
  flex-direction: column;
  gap: 1em;
  width: 100%;
}
.markdown-container .article-header .article-info .h-line {
  margin-left: -2%;
  width: 104%;
}
.markdown-container .article-header .article-info .article-title {
  font-size: 2.5em;
  font-weight: bold;
}
.markdown-container .article-header .article-info .info-box {
  line-height: 1.6em;
  font-family: 'Consolas';
}
.markdown-container .article-header .article-info .info-box .time-info,
.markdown-container .article-header .article-info .info-box .stat-info {
  font-size: 14px;
}
.markdown-container .article-header .article-info .info-box .big {
  font-size: 16px;
}
.markdown-container .article-header .article-info .info-box .author {
  font-size: 16px;
  font-weight: bold;
}
.markdown-container hr {
  border: 1.3px solid rgba(0,0,0,0.16);
  width: 104%;
  margin-left: -2%;
}
.markdown-container .side-information {
  width: 24%;
  position: sticky;
  top: 16px;
  align-self: flex-start;
}
.markdown-container .wl-panel {
  border-radius: 0;
}
.paginator {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 10px 10px;
  user-select: none;
}
.paginator .left {
  font-size: 18px;
  font-weight: bold;
}
.paginator .right input.page-jump-input {
  width: 32px;
  height: 32px;
  border: none;
  outline: none;
  text-align: center;
  background-color: #b4af9a;
  color: #4a473e;
  font-size: 18px;
  user-select: none;
  box-sizing: border-box;
  cursor: default;
}
.paginator .right input.page-jump-input::-webkit-input-placeholder {
  color: #4a473e;
}
.paginator .right input.page-jump-input::-moz-placeholder {
  color: #4a473e;
}
.paginator .right .paginator-btn-box {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 24px;
}
.paginator .right .paginator-button-component .button-anchor {
  width: 64px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 20px;
  transition: all 0.2s linear 0s;
  background-color: #b4af9a;
  color: #4a473e;
  cursor: default;
}
.paginator .right .paginator-button-component .button-anchor:hover:not(.disabled) {
  background-color: #4a473e;
  color: #e7e1c7;
}
.paginator .right .paginator-button-component .button-anchor.disabled {
  background-color: #c8c3ae;
  color: #5b5b52;
  cursor: not-allowed;
}
.post-item {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 20px;
  height: fit-content;
  transition: all 0.2s linear 0s;
  padding: 20px 20px;
  margin: 6px 4px;
  min-height: 144px;
}
.post-item > * {
  user-select: none;
}
.post-item:hover {
  background-color: #e7e1c7;
  filter: drop-shadow(0px 0px 2px #4a473e);
}
.post-item:hover .no-cover {
  transition: all 0.2s linear 0s !important;
  filter: invert(100%);
  background-color: #b5b8c1;
}
.post-item:hover .post-cover:not(.no-cover) {
  transition: all 0.2s linear 0s !important;
  filter: opacity(0.7);
}
.post-item:hover .post-title-box {
  background-color: #4a473e;
  color: #e7e1c7;
}
.post-item:hover .post-title-box .left .icon {
  background-color: #e7e1c7;
}
.post-item .post-info {
  display: flex;
  flex-direction: column;
  width: 70%;
}
.post-item .post-title-box {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 8px;
  padding: 6px 10px;
  color: #4a473e;
  background-color: #b4af9a;
  transition: all 0.2s linear 0s;
  cursor: default;
  font-size: 18px;
  font-weight: bold;
  min-height: 1.3em;
}
.post-item .post-title-box .left {
  display: flex;
  flex-direction: row;
  justify-content: left;
  gap: 8px;
  align-items: center;
}
.post-item .post-title-box .left .icon {
  width: 16px;
  height: 16px;
  min-width: 16px;
  min-height: 16px;
  background-color: #4a473e;
  transition: all 0.2s linear 0s;
}
.post-item img.post-cover {
  width: 307.2px;
  height: 172.8px;
  min-width: 307.2px;
  min-height: 172.8px;
  max-width: 307.2px;
  max-height: 172.8px;
  object-fit: cover;
  transition: all 0.2s linear 0s;
}
.post-item .post-summary-box {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 6px 6px 0 8px;
}
.post-item .post-summary-box .post-summary {
  max-width: 61.8%;
  line-height: 2em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.post-item .post-summary-box .post-summary,
.post-item .post-summary-box .post-time {
  color: #4a473e;
  font-size: 18px;
}
.button-component {
  width: 100%;
  user-select: none;
}
.button-component .button-container a.active {
  background-position: -100% center;
  color: #b4af9a !important;
}
.button-component .button-container a.active:hover::before {
  content: none !important;
}
.button-component .button-container a.active:hover::after {
  content: none !important;
}
.button-component .button-container a.active .button-anchor-box .button-icon {
  background-position: -100% center;
}
.button-component .button-container a.button-anchor {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  color: #4a473e;
  background-image: linear-gradient(90deg, #b4af9a 50%, #b4af9a 50%, #4a473e 50%, #4a473e 100%);
  background-size: 200%;
  transition: all 0.2s linear 0s;
  cursor: default;
  min-width: min-content;
}
.button-component .button-container a.button-anchor:hover {
  background-position: -100% center;
  color: #b4af9a;
}
.button-component .button-container a.button-anchor::before {
  background-color: #4a473e;
  transition: all 0.2s ease 0s;
}
.button-component .button-container a.button-anchor:hover::before {
  height: 2px;
  z-index: -1;
  width: 100%;
  content: "";
  transform: translate(0px, -8px);
  pointer-events: none;
}
.button-component .button-container a.button-anchor::after {
  background-color: #4a473e;
  transition: all 0.2s ease 0s;
}
.button-component .button-container a.button-anchor:hover::after {
  height: 2px;
  z-index: -1;
  width: 100%;
  content: "";
  transform: translate(0px, 8px);
  pointer-events: none;
}
.button-component .button-container a.button-anchor:hover .button-anchor-box .button-icon {
  background-position: -100% center;
}
.button-component .button-container a.button-anchor .button-anchor-box {
  padding: 8px;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
  align-items: center;
  font-family: Manrope, sans-serif;
  font-weight: 500;
  font-size: 18px;
}
.button-component .button-container a.button-anchor .button-anchor-box .button-icon {
  width: 5%;
  height: 5%;
  min-width: 20px;
  min-height: 20px;
  background-image: linear-gradient(90deg, #4a473e 50%, #4a473e 50%, #dad4bb 50%, #dad4bb 100%);
  background-size: 200%;
  transition: all 0.1s linear 0s;
}
.data-row {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.data-row .data-value a {
  text-decoration: none;
  color: #4a473e;
}
.index-content {
  width: 98%;
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.index-content .post-list {
  background-color: rgba(231,225,199,0.5);
  height: fit-content;
  padding: 4px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  overflow-x: hidden;
  justify-content: space-between;
}
.information-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  overflow: hidden;
}
.information-content .avatar-box {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.information-content .avatar-box .avatar-img img {
  height: 64px;
  width: 64px;
}
.information-content .avatar-box .personal-information {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.information-content .avatar-box .personal-information .name {
  font-size: 20px;
  font-weight: bold;
}
.information-content .avatar-box .personal-information .sign {
  font-size: 14px;
}
.information-content hr {
  border: 1.3px solid rgba(0,0,0,0.16);
  width: 100%;
}
.information-content .data-row {
  justify-content: space-between;
}
.information-content span.no-error-declaration {
  margin: 32px 0;
  text-align: center;
  font-size: 20px;
  user-select: none;
  letter-spacing: 2px;
}
.left-declaration {
  display: flex;
  flex-direction: row;
  height: auto;
}
.left-declaration .declaration {
  background-color: #b4af9a;
  width: 10px;
  height: 100%;
  margin-right: 5px;
}
.left-declaration .declaration:nth-child(2) {
  width: 4px;
}
.titled-card-compoment {
  background-color: #e7e1c7;
}
.titled-card-compoment .card-title {
  background-color: #4a473e;
  color: #e7e1c7;
  padding: 0.5em 1em;
  user-select: none;
  font-weight: bold;
  letter-spacing: 0.5px;
}
.titled-card-compoment .card-content {
  padding: 0.5em 1em;
  color: #4a473e;
}
#waline-container {
  --waline-font-size: 1rem;
  --waline-white: #fff;
  --waline-light-grey: #999;
  --waline-dark-grey: #666;
  --waline-theme-color: #4a473e;
  --waline-active-color: #757161;
  --waline-color: #4a473e;
  --waline-bgcolor: #b1ab8f;
  --waline-bgcolor-light: #f3f0e3;
  --waline-bgcolor-hover: #f0f0f0;
  --waline-border-color: #c2bda7;
  --waline-disable-bgcolor: #f8f8f8;
  --waline-disable-color: #000;
  --waline-code-bgcolor: #282c34;
  --waline-bq-color: #f0f0f0;
  --waline-avatar-size: 3.25rem;
  --waline-m-avatar-size: calc(var(--waline-avatar-size) * 9 / 13);
  --waline-badge-color: #3498db;
  --waline-badge-font-size: 0.75em;
  --waline-info-bgcolor: #b4af9a;
  --waline-info-color: #25241f;
  --waline-info-font-size: 0.625em;
  --waline-border: 1px solid var(--waline-border-color);
  --waline-avatar-radius: 50%;
  --waline-box-shadow: none;
}
#waline-container .wl-panel {
  border-radius: 0;
  padding: 8px;
  background-color: unset;
  border-width: 2px;
}
#waline-container .wl-header {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  padding-bottom: 0.8em;
}
#waline-container .wl-header label {
  font-size: 0.85em;
  font-weight: bold;
}
#waline-container .wl-editor,
#waline-container .wl-input {
  border: solid;
  border-width: 2px;
  border-radius: 0;
  border-color: #c2bda7;
  font-size: 0.85em;
  font-family: 'Consolas', sans-serif;
}
#waline-container .wl-input {
  font-weight: bold;
}
#waline-container .wl-btn {
  border-radius: 0;
}
