:root {
  --color-primary: #66afef;
  --color-text-main: #1e3e3f;
  --color-text-secondary: #5c6b72;
  --color-text-muted: #999;
  --color-text-dark: #555;
  --color-background: #f6f8fa;
  --color-white: #fff;
  --color-black: #000;
  --color-success: #34d058;
  --color-danger: #ea4a5a;
  --color-border: #aaa;
  --color-border-light: #f1f1f1;
  --color-border-dark: #cdcdcd;
  --shadow-light: 0 0 20px rgba(217, 217, 217, 0.5);
  --shadow-hover: 0 0 5px #d9d9d9;
  --bg-table-even: rgba(199, 224, 251, 0.3);
  --bg-table-odd: rgba(217, 232, 255, 0.3);
  --bg-table-th: #a3ddfb;
  --bg-blockquote: rgba(217, 232, 255, 0.42);
  --bg-code: rgba(189, 220, 247, 0.42);
  --bg-mark: rgba(255, 241, 51, 0.38);
  --bg-selection: rgba(51, 146, 255, 0.16);
  --bg-menu: #92cafa;
  --bg-menu-color: rgba(0, 0, 0, 0.2);
  --shadow-menu: 0 -1px 10px 0 rgba(158, 158, 158, 0.3);
  --border-input: #cdcdcd;
  --border-input-focus: #0969da;
  --shadow-input-focus: 0 0 0 3px rgba(9, 105, 218, 0.3);
  --bg-preview: rgba(255, 255, 255, 0.8);
  --border-timeline: rgba(0, 0, 0, 0.13);
  --shadow-timeline: 0 2px 8px rgba(0, 0, 0, 0.09);
  --bg-language: linear-gradient(to right, #ed6ea0 0%, #ec8c69 100%);
  --shadow-language: 1px 1px 0.75rem rgba(237, 110, 161, 0.3);
  --bg-go-post: linear-gradient(120deg, #9abbf7 0%, #ffbbf4 100%);
  --shadow-go-post: 2px 2px 10px 0 rgba(255, 187, 244, 0.48);
  --shadow-go-post-hover: -2px -2px 10px 0 rgba(154, 187, 247, 0.48);
}

@media (prefers-color-scheme: dark) {
  :root {
    --color-primary: #66afef;
    --color-text-main: #c9d1d9;
    --color-text-secondary: #8b949e;
    --color-text-muted: #6e7681;
    --color-text-dark: #c9d1d9;
    --color-background: #0d1117;
    --color-white: #161b22;
    --color-black: #fff;
    --color-success: #3fb950;
    --color-danger: #f85149;
    --color-border: #30363d;
    --color-border-light: #21262d;
    --color-border-dark: #30363d;
    --shadow-light: 0 0 20px rgba(0, 0, 0, 0.5);
    --shadow-hover: 0 0 5px rgba(0, 0, 0, 0.8);
    --bg-table-even: rgba(25, 35, 45, 0.5);
    --bg-table-odd: rgba(20, 30, 40, 0.5);
    --bg-table-th: #1f2937;
    --bg-blockquote: rgba(40, 50, 60, 0.5);
    --bg-code: rgba(40, 50, 60, 0.5);
    --bg-mark: rgba(180, 160, 0, 0.4);
    --bg-selection: rgba(51, 146, 255, 0.3);
    --bg-menu: #1f2937;
    --bg-menu-color: rgba(0, 0, 0, 0.5);
    --shadow-menu: 0 -1px 10px 0 rgba(0, 0, 0, 0.5);
    --border-input: #30363d;
    --border-input-focus: #58a6ff;
    --shadow-input-focus: 0 0 0 3px rgba(88, 166, 255, 0.3);
    --bg-preview: rgba(13, 17, 23, 0.9);
    --border-timeline: rgba(255, 255, 255, 0.13);
    --shadow-timeline: 0 2px 8px rgba(0, 0, 0, 0.5);
    --bg-language: linear-gradient(to right, #9e3d64 0%, #a6583d 100%);
    --shadow-language: 1px 1px 0.75rem rgba(0, 0, 0, 0.5);
    --bg-go-post: linear-gradient(120deg, #4b6a9e 0%, #a66a9c 100%);
    --shadow-go-post: 2px 2px 10px 0 rgba(0, 0, 0, 0.5);
    --shadow-go-post-hover: -2px -2px 10px 0 rgba(0, 0, 0, 0.5);
  }
}
@keyframes loop1 {
  from {
    transform: rotate(30deg);
  }
  to {
    transform: rotate(390deg);
  }
}
@keyframes loop2 {
  from {
    transform: rotate(60deg);
  }
  to {
    transform: rotate(420deg);
  }
}
@keyframes loop3 {
  from {
    transform: rotate(90deg);
  }
  to {
    transform: rotate(450deg);
  }
}
@keyframes loop4 {
  from {
    transform: rotate(120deg);
  }
  to {
    transform: rotate(480deg);
  }
}
.fade-enter-active,
.fade-leave-active {
  transition: opacity 0.3s;
}

.fade-enter-from,
.fade-leave-to {
  opacity: 0;
}

.into-enter-active {
  transition: opacity 0.5s, transform 0.5s;
}

.into-enter-from {
  opacity: 0;
  transform: scale(1.1);
}

.slide-enter-active,
.slide-leave-active {
  transition: margin-top 0.3s, opacity 0.3s;
}

.slide-enter-from,
.slide-leave-to {
  margin-top: -300px;
  opacity: 0;
}

* {
  margin: 0;
  padding: 0;
  position: relative;
  scrollbar-color: #8ab5ff #e6efff;
  scrollbar-width: thin;
  word-wrap: break-word;
}

::-webkit-scrollbar {
  height: 12px;
  width: 12px;
}

::-webkit-scrollbar-thumb {
  background: #8ab5ff linear-gradient(45deg, rgba(255, 255, 255, 0.4) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.4) 75%, transparent 75%, transparent);
  border: 3px solid #e6efff;
  border-radius: 100px;
}

::-webkit-scrollbar-track {
  background: #e6efff;
  border-radius: 100px;
}

::selection {
  background-color: var(--bg-selection);
  color: unset;
}

body {
  background: var(--color-background);
  color: var(--color-text-main);
  font: 500 14px Lexend, "Noto Sans SC", sans-serif;
  overflow-x: hidden;
  width: 100%;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: background 0.25s, color 0.25s, opacity 0.25s;
}
a:hover {
  opacity: 0.8;
}

audio,
button,
iframe,
img,
video,
.copycode,
.go-post,
.page-current,
.language,
.katex,
.hljs-ln-numbers {
  user-select: none;
}

b, strong {
  font-weight: bold;
  line-height: 2.5;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--color-text-main);
  font-weight: bold;
  margin: 15px 0;
  word-break: keep-all;
}

h1 {
  font-size: 30px;
}

h2 {
  font-size: 27px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 21px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 15px;
}

hr {
  border-style: dashed none none;
  border-width: 1.5px;
}

img, video, audio, iframe {
  border-radius: 10px;
}

p, ul, ol {
  line-height: 1.7;
  margin: 15px 0;
}

@media (min-width: 900px) {
  ul, ol {
    padding-left: 40px;
  }
}
@media (max-width: 900px) {
  ul, ol {
    padding-left: 20px;
  }
}

ul li, ol li {
  margin: 8px 0;
}

table:not(.hljs-ln) {
  margin: 15px 0;
}
table:not(.hljs-ln) td:nth-child(even) {
  background: var(--bg-table-even);
}
table:not(.hljs-ln) td:nth-child(odd) {
  background: var(--bg-table-odd);
}
table:not(.hljs-ln) th {
  background: var(--bg-table-th);
}
table:not(.hljs-ln) tr th, table:not(.hljs-ln) tr td {
  border-radius: 3px;
  padding: 10px 20px;
}

blockquote {
  background: var(--bg-blockquote);
  border-left: 3px solid var(--color-text-main);
  border-radius: 3px;
  margin: 15px 0;
  overflow: auto;
  padding: 0 15px;
}

code {
  background: var(--bg-code);
  border-radius: 4px;
  line-height: 2.5;
  padding: 4px 8px;
}

mark {
  background: var(--bg-mark);
  border-radius: 4px;
  color: unset;
  line-height: 2.5;
  padding: 4px 8px;
}

pre {
  border: 1px solid var(--color-border-light);
  border-radius: 15px;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
  margin: 25px 0;
  overflow: hidden;
  white-space: normal;
  background: var(--color-background);
  transition: all 0.25s;
}
pre.folded {
  height: 50px;
}
pre.folded .code-content {
  display: none;
}
pre.expanded {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  margin: 0;
  border-radius: 0;
}
pre.expanded .code-content {
  height: 100vh;
  overflow: auto;
}

pre, code, .hljs, .input, .language {
  font-family: "Fira Code", "Noto Sans SC", monospace;
}

.katex {
  white-space: normal !important;
}

#main {
  margin-right: calc(100% - 100vw);
}

#menu {
  background: var(--bg-menu);
  box-shadow: var(--shadow-menu);
  font-weight: bold;
  line-height: 50px;
  position: fixed;
  top: 0;
  transition: background 0.25s ease-out, top 0.25s ease-out;
  width: 100vw;
  z-index: 1004;
  user-select: none;
}
#menu.hidden {
  top: -50px;
}
#menu.menu-color {
  background: var(--bg-menu-color);
}
#menu.menu-color #desktop-menu a, #menu.menu-color #mobile-menu a, #menu.menu-color #mobile-menu .title {
  color: #fff;
}
#menu #desktop-menu {
  height: 50px;
}
@media (max-width: 900px) {
  #menu #desktop-menu {
    display: none;
  }
}
@media (min-width: 900px) {
  #menu #desktop-menu {
    display: block;
  }
}
#menu #desktop-menu .title {
  color: var(--color-text-dark);
  display: inline-block;
  margin-left: 60px;
  margin-right: 5px;
}
#menu #desktop-menu a {
  color: var(--color-text-dark);
  display: inline-block;
  margin-left: 30px;
}
#menu #desktop-menu a span {
  display: inline-block;
}
#menu #mobile-menu {
  min-height: 50px;
  text-align: center;
}
@media (min-width: 900px) {
  #menu #mobile-menu {
    display: none;
  }
}
@media (max-width: 900px) {
  #menu #mobile-menu {
    display: block;
  }
}
#menu #mobile-menu .items {
  padding: 10px 0 20px;
  z-index: 1002;
}
#menu #mobile-menu .items .item {
  display: flex;
  justify-content: center;
  margin: auto;
  min-width: 200px;
  width: 80%;
}
#menu #mobile-menu .items a {
  color: var(--color-text-dark);
}
#menu #mobile-menu .title {
  color: var(--color-text-dark);
  cursor: pointer;
  z-index: 1003;
}

#menu-curtain {
  background: var(--bg-menu-color);
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1001;
}

#footer {
  font-size: 14px;
  margin-top: 150px;
  padding-bottom: 20px;
  text-align: center;
  width: 100%;
}
#footer #footer-icon {
  color: var(--color-primary);
  display: inline-block;
  font-size: 18px;
  margin: 0 10px;
}
#footer #footer-wrap {
  border-top: 1px solid var(--color-border);
  color: var(--color-text-secondary);
  margin: auto;
  box-sizing: border-box;
}
@media (min-width: 900px) {
  #footer #footer-wrap {
    width: 900px;
  }
}
@media (max-width: 900px) {
  #footer #footer-wrap {
    width: 100%;
  }
}
#footer #footer-wrap div {
  margin: 15px;
}

#search-bar {
  margin-bottom: 50px;
  z-index: 1000;
}

.icon {
  color: var(--color-text-secondary);
  margin-right: 5px;
}

.input {
  background: var(--color-background);
  border: 1px solid var(--border-input);
  border-radius: 50px;
  box-sizing: border-box;
  color: var(--color-black);
  display: block;
  font-size: 15px;
  height: 50px;
  text-indent: 20px;
  transition: background 0.25s, border 0.25s, box-shadow 0.25s;
  width: 100%;
}
.input:focus {
  background: var(--color-white);
  border-color: var(--border-input-focus);
  box-shadow: var(--shadow-input-focus);
  outline: none;
}
.input:hover {
  background: var(--color-white);
}

#crypto {
  margin: 50px 0;
}
#crypto.failure {
  border-color: var(--color-danger);
  color: var(--color-danger);
}
#crypto.failure:focus {
  box-shadow: 0 0 0 3px rgba(234, 74, 90, 0.3);
}
#crypto.success {
  border-color: var(--color-success);
  color: var(--color-success);
}

#loading {
  align-items: center;
  background: var(--color-white);
  display: flex;
  flex-direction: column;
  height: 100vh;
  justify-content: center;
  left: 0;
  position: fixed;
  top: 0;
  width: 100vw;
  word-break: keep-all;
  z-index: 2147483647;
}
#loading h2, #loading p, #loading img {
  margin: 10px;
}
#loading img {
  border-radius: 0;
  height: 50px;
}

#loading-circle {
  align-items: center;
  border: 10px solid var(--bg-table-th);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  height: 50vmin;
  justify-content: center;
  padding: 50px;
  text-align: center;
  width: 50vmin;
}

#preview {
  align-items: center;
  background-color: var(--bg-preview);
  display: flex;
  height: 100vh;
  justify-content: center;
  left: 0;
  position: fixed;
  top: 0;
  width: 100vw;
  z-index: 1005;
}

#preview-content {
  box-shadow: var(--shadow-light);
  margin: auto;
  max-height: 95%;
  max-width: 95%;
}

#timeline-wrap {
  display: flex;
  flex-direction: column-reverse;
}

.timeline {
  margin-bottom: 30px;
  transition: margin-top 0.5s, opacity 0.3s, visibility 0.3s;
}

.timeline-content {
  background: var(--color-white);
  border: 1px solid var(--border-timeline);
  border-radius: 3px;
  margin-left: 17.5px;
  padding: 24px;
  transition: box-shadow 0.5s;
}
.timeline-content:hover {
  box-shadow: var(--shadow-timeline);
}

.timeline-tail {
  background: var(--color-white);
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  height: 7px;
  position: absolute;
  width: 7px;
}

.code-content {
  font-size: 13px;
  line-height: 2;
  overflow: auto;
  padding: 50px 30px 20px;
  white-space: pre;
}

.copycode {
  display: flex;
  color: var(--color-text-secondary);
  position: absolute;
  right: 0;
  top: 0;
  user-select: none;
  z-index: 10;
}
.copycode i {
  cursor: pointer;
  padding: 15px 10px;
  transition: transform 0.25s, opacity 0.25s;
}
.copycode i:last-child {
  padding-right: 15px;
}
.copycode.copied .copy-btn {
  opacity: 0;
  display: none;
}
.copycode:not(.copied) .check-btn {
  opacity: 0;
  display: none;
}

.content .copycode i:hover {
  color: var(--color-primary);
  opacity: 0.8;
}

.language {
  background: var(--bg-language);
  border-radius: 0 0 10px 10px;
  box-shadow: var(--shadow-language);
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  left: 30px;
  padding: 10px 15px;
  position: absolute;
  top: 0;
  user-select: none;
}

.hljs-ln-code {
  padding-left: 20px !important;
}

.hljs-ln-numbers {
  border-right: 1px solid var(--color-border);
  color: var(--color-border);
  padding-right: 10px !important;
  text-align: right;
  vertical-align: top;
  user-select: none;
}

.comment iframe {
  border-radius: 0;
}

.content {
  transition: opacity 0.25s;
}
.content img, .content video, .content audio, .content iframe {
  display: block;
  margin: 15px auto;
  max-width: 75%;
}

.article {
  box-sizing: border-box;
  font-size: 15px;
  margin: auto;
  margin-top: 100px;
  padding: 20px;
}
@media (min-width: 900px) {
  .article {
    width: 900px;
  }
}
@media (max-width: 900px) {
  .article {
    width: 100%;
  }
}
.article .content {
  margin: 50px 0;
}
.article .info {
  line-height: 1.7;
}
.article .info .category, .article .info .tags, .article .info .tags .tag {
  display: inline-block;
  margin-right: 10px;
}
.article .info .date {
  color: var(--color-text-secondary);
  display: inline-block;
  margin-right: 10px;
}
.article .info a {
  color: var(--color-text-secondary);
}

#archives {
  box-sizing: border-box;
  margin: auto;
  margin-top: 100px;
  padding: 20px;
}
@media (min-width: 900px) {
  #archives {
    width: 900px;
  }
}
@media (min-width: 900px) and (max-width: 1200px) {
  #archives {
    width: 800px;
  }
}
@media (max-width: 900px) {
  #archives {
    width: 100%;
  }
}
#archives h3 {
  margin: 10px 0;
}
#archives .categories-tags {
  margin: auto;
  margin-bottom: 50px;
  max-width: 900px;
  text-align: center;
  width: 100%;
}
#archives .categories-tags span {
  display: inline-block;
  margin: 10px;
}
#archives .categories-tags span .icon {
  color: #fff;
  margin-left: 0;
  margin-right: 10px;
}
#archives .categories-tags span a {
  border: rgba(255, 255, 255, 0.5) 1px solid;
  border-radius: 10px;
  color: #fff;
  padding: 10px 15px;
  transition: background 0.25s, border 0.25s, color 0.25s;
  user-select: none;
}
#archives .categories-tags span a:hover {
  background: #fff !important;
  border: var(--color-primary) 1px solid;
  color: var(--color-text-secondary);
  opacity: 1;
}
#archives .categories-tags span a:hover .icon {
  color: var(--color-text-secondary);
}
#archives .category, #archives .tags .tag {
  display: inline-block;
  margin-right: 10px;
}
#archives a, #archives .tag-icon, #archives .item-time {
  color: var(--color-text-secondary);
}
#archives .tags {
  display: inline-block;
}
#archives .info {
  line-height: 1.7;
}

#home-card {
  width: 300px;
}
@media (min-width: 900px) and (max-width: 1200px) {
  #home-card {
    display: none;
  }
}
@media (max-width: 900px) {
  #home-card {
    display: none;
  }
}
#home-card #card-style {
  background: var(--color-white);
  border: none;
  border-radius: 10px;
  box-shadow: var(--shadow-light);
  display: flex;
  flex-direction: column;
  max-height: 80vh;
  justify-content: center;
  overflow: auto;
  position: sticky;
  text-align: center;
  top: 10vh;
  width: 300px;
}
#home-card #card-div {
  overflow: auto;
  padding: 25px 0;
}
#home-card #card-div .avatar {
  border: var(--color-border-light) solid 3px;
  border-radius: 50%;
  height: 140px;
  margin: auto;
  text-align: center;
  width: 140px;
}
#home-card #card-div .avatar img {
  border-radius: 50%;
  height: 100%;
  width: 100%;
  transition: transform 0.25s;
}
#home-card #card-div .avatar:hover img {
  transform: rotate(360deg);
}
#home-card #card-div .name {
  font-size: 16px;
  font-weight: bold;
  margin: 20px auto;
}
#home-card #card-div .description {
  margin: 20px auto;
  width: 85%;
}
#home-card #card-div .icon-links, #home-card #card-div .friend-links {
  border-top: var(--color-border-dark) solid 1px;
  margin: 10px auto;
  padding-top: 10px;
  width: 85%;
}
#home-card #card-div .icon-links a, #home-card #card-div .friend-links a {
  border-radius: 5px;
  color: var(--color-text-secondary);
  transition: background 0.25s, color 0.25s;
  user-select: none;
}
#home-card #card-div .icon-links a:hover, #home-card #card-div .friend-links a:hover {
  background: var(--color-primary);
  color: var(--color-white);
  opacity: 1;
}
#home-card #card-div .icon-links .icon-link {
  margin: 5px;
}
#home-card #card-div .icon-links a {
  font-size: 18px;
  padding: 5px;
}
#home-card #card-div .friend-links .friend-link {
  margin-bottom: 5px;
}
#home-card #card-div .friend-links a {
  display: block;
  padding: 8px 0;
}

#home-head {
  display: flex;
  height: 100vh;
  width: 100vw;
  user-select: none;
}
#home-head #home-background {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  left: 0;
  position: absolute;
  top: 0;
  width: 100vw;
  z-index: -1;
}
#home-head #home-info {
  margin: auto;
}
@media (min-width: 900px) {
  #home-head #home-info {
    height: 500px;
    width: 500px;
  }
}
@media (max-width: 900px) {
  #home-head #home-info {
    height: 350px;
    width: 350px;
  }
}
#home-head #home-info .info {
  align-items: center;
  display: flex;
  justify-content: center;
  text-align: center;
}
@media (min-width: 900px) {
  #home-head #home-info .info {
    border-radius: 50%;
    height: 500px;
    width: 500px;
  }
}
@media (max-width: 900px) {
  #home-head #home-info .info {
    background: var(--bg-preview);
    height: 350px;
    margin: auto;
    width: 350px;
  }
}
@media (min-width: 900px) {
  #home-head #home-info .info .wrap {
    padding: 25px;
  }
}
@media (max-width: 900px) {
  #home-head #home-info .info .wrap {
    padding: 50px;
  }
}
#home-head #home-info .info .wrap h1 {
  color: var(--color-black);
  font-weight: bold;
  margin-bottom: 10px;
}
@media (min-width: 900px) {
  #home-head #home-info .info .wrap h1 {
    font-size: 52px;
  }
}
@media (max-width: 900px) {
  #home-head #home-info .info .wrap h1 {
    font-size: 46px;
  }
}
#home-head #home-info .info .wrap h3 {
  color: var(--color-black);
  margin: 10px 0;
}
@media (min-width: 900px) {
  #home-head #home-info .info .wrap h3 {
    font-size: 24px;
  }
}
@media (max-width: 900px) {
  #home-head #home-info .info .wrap h3 {
    font-size: 20px;
  }
}
#home-head #home-info .info .wrap h5 {
  color: var(--color-black);
  margin: 20px 0;
}
@media (min-width: 900px) {
  #home-head #home-info .info .wrap h5 {
    font-size: 16px;
  }
}
@media (max-width: 900px) {
  #home-head #home-info .info .wrap h5 {
    font-size: 14px;
  }
}
#home-head #home-info .loop {
  background: var(--color-white);
  border-radius: 38% 62% 63% 37%/41% 44% 56% 59%;
}
@media (min-width: 900px) {
  #home-head #home-info .loop {
    display: inline-block;
    height: 500px;
    position: absolute;
    width: 500px;
  }
}
@media (max-width: 900px) {
  #home-head #home-info .loop {
    display: none;
    height: 350px;
    position: absolute;
    width: 350px;
  }
}
#home-head #home-info .loop:nth-child(1) {
  animation: loop1 10s linear infinite;
  opacity: 0.3;
  transform: rotate(30deg);
}
#home-head #home-info .loop:nth-child(2) {
  animation: loop2 15s linear infinite;
  opacity: 0.45;
  transform: rotate(60deg);
}
#home-head #home-info .loop:nth-child(3) {
  animation: loop3 10s linear infinite;
  opacity: 0.3;
  transform: rotate(90deg);
}
#home-head #home-info .loop:nth-child(4) {
  animation: loop4 15s linear infinite;
  opacity: 0.45;
  transform: rotate(120deg);
}

#home-posts-wrap {
  background: transparent;
  border-radius: 10px;
  box-sizing: border-box;
  display: flex;
  margin: auto;
  padding: 20px;
}
@media (min-width: 900px) {
  #home-posts-wrap {
    max-width: 1200px;
  }
}
@media (min-width: 900px) and (max-width: 1200px) {
  #home-posts-wrap {
    width: 800px;
  }
}
@media (max-width: 900px) {
  #home-posts-wrap {
    width: 100%;
  }
}
@media (min-width: 900px) {
  #home-posts-wrap.home-posts-wrap-no-card #home-posts {
    margin: auto;
  }
}

#home-posts {
  margin: auto;
}
@media (min-width: 900px) {
  #home-posts {
    margin-right: 50px;
    width: 850px;
  }
}
@media (min-width: 900px) and (max-width: 1200px) {
  #home-posts {
    width: 100%;
  }
}
@media (max-width: 900px) {
  #home-posts {
    margin: auto;
    width: 100%;
  }
}
#home-posts .post {
  background: var(--color-white);
  border-radius: 20px;
  box-shadow: var(--shadow-light);
  transition: box-shadow 0.25s, transform 0.25s;
}
@media (min-width: 900px) {
  #home-posts .post {
    margin-bottom: 25px;
    padding: 50px;
  }
}
@media (max-width: 900px) {
  #home-posts .post {
    margin-bottom: 30px;
    padding: 20px 30px;
  }
}
#home-posts .post:hover {
  box-shadow: var(--shadow-hover);
  transform: translate(-5px, -5px);
}
#home-posts .post .post-title {
  color: var(--color-primary);
  text-align: center;
}
#home-posts .post .category-and-date {
  color: var(--color-text-secondary);
  margin-top: 15px;
  text-align: center;
  width: 100%;
}
#home-posts .post .category-and-date .category {
  display: inline-block;
  margin-right: 25px;
}
#home-posts .post .category-and-date .category a {
  color: var(--color-text-secondary);
}
#home-posts .post .category-and-date .date {
  display: inline-block;
}
#home-posts .post .category-and-date .special {
  display: inline-block;
  margin-left: 25px;
}
#home-posts .post .description {
  padding: 20px 0;
}
#home-posts .post .post-tags {
  line-height: 1.7;
}
@media (max-width: 900px) {
  #home-posts .post .post-tags {
    padding-right: 69px;
  }
}
#home-posts .post .post-tags .tag {
  display: inline-block;
  font-weight: bold;
  margin-right: 10px;
}
#home-posts .post .post-tags a {
  font-size: 14px;
}
#home-posts .post .go-post {
  background: var(--bg-go-post);
  border: 0;
  border-radius: 20px 0;
  bottom: -5px;
  box-shadow: var(--shadow-go-post);
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  padding: 10px 24px;
  position: absolute;
  right: -5px;
  transition: box-shadow 0.25s ease-out, right 0.25s ease-out;
  user-select: none;
}
#home-posts .post .go-post:hover {
  box-shadow: var(--shadow-go-post-hover);
  opacity: 1;
  right: -7px;
}
#home-posts .page-current {
  align-items: center;
  display: flex;
  font-weight: bold;
  justify-content: center;
  margin-top: 50px;
  text-align: center;
  width: 100%;
  user-select: none;
}
#home-posts .page-current .current {
  border-radius: 5px;
  color: var(--color-danger);
  display: inline-block;
  height: 35px;
  line-height: 35px;
  margin: 0 7px;
  padding: 5px;
  width: 35px;
}
#home-posts .page-current .page-num, #home-posts .page-current .page-omit {
  border-radius: 5px;
  display: inline-block;
  height: 35px;
  line-height: 35px;
  margin: 0 7px;
  padding: 5px;
  width: 35px;
}
#home-posts .page-current .page-num {
  transition: background 0.25s, color 0.25s;
}
#home-posts .page-current .page-num:hover {
  background: var(--color-primary);
  color: #fff;
  opacity: 1;
}
#home-posts .page-current a {
  color: var(--color-text-muted);
}