.article {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  margin: 2rem auto;
  max-width: 860px;
  font-family: "Segoe UI", "Noto Sans SC", sans-serif;
  transition: all 0.3s ease-in-out;
}

.article:hover {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.article h1 {
  font-size: 2.3rem;
  font-weight: bold;
  margin-bottom: 1rem;
  text-align: center;
  color: #222;
}

.article .info {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  color: #666;
  background: #f8f8f8;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.03);
}

.article .info span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.article .info .icon i {
  color: #888;
  font-size: 1rem;
}

.article .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.article .tag a {
  background: #e6f0ff;
  color: #007acc !important;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  font-size: 0.85rem;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 2px 4px rgba(0,0,0,0.06);
}

.article .tag a:hover {
  background: #d0eaff;
  color: #005fa3 !important;
}

.article .content {
  font-size: 1.05rem;
  color: #333;
  line-height: 1.8;
  margin-top: 1.5rem;
}

.article .content img {
  max-width: 100%;
  border-radius: 8px;
  margin: 1rem 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.article #crypto {
  margin-top: 1.5rem;
  padding: 0.7rem;
  font-size: 1rem;
  width: 100%;
  border-radius: 10px;
  border: 1px solid #ccc;
}

#comment {
  margin-top: 2.5rem;
  background: #fafafa;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/*  Archives 页面：分类 / 标签按钮 —— 白色风格  */
#archives .categories-tags span a {
  display: inline-block;
  background-color: #fff;      /* 白底 */
  color: #333;                 /* 深灰文字 */
  border: 1px solid #ddd;      /* 浅灰边框 */
  border-radius: 12px;
  padding: 12px 18px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);  /* 默认无阴影 */
}

#archives .categories-tags span a:hover {
  background-color: #f0f0f0;   /* 悬停浅灰底 */
  color: #000;                 /* 字体更黑 */
  border-color: #bbb;          /* 边框稍深 */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* 轻微阴影 */
  transform: translateY(-2px); /* 微上浮动效 */
}

/* 背景图建议放 body 或其他元素 */
body {
  margin: 0;
  font-family: "Segoe UI", "Noto Sans SC", sans-serif;
  background: url('https://images.unsplash.com/photo-1542281286-9e0a16bb7366') center/cover no-repeat fixed;
}

/* Footer 主体毛玻璃效果 */
#footer {
  position: relative;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background-color: rgba(255, 255, 255, 0.2); /* 半透明背景 */
  color: #333;
  font-size: 0.95rem;
  padding: 2rem 1rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

/* 内容容器 */
#footer-wrap {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
  text-align: center;
}
/* 左右结构 */
.footer-left,
.footer-right {
  flex: 1 1 300px;
  text-align: center;
}

/* 链接样式 */
#footer a {
  color: #007acc;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}
#footer a:hover {
  color: #005fa3;
  text-decoration: underline;
}

/* 图标动画 */
#footer-icon i {
  color: #f39c12;
  margin-left: 0.4em;
  animation: rotate-icon 3s linear infinite;
}

/* 表情动画文字 */
.footer-animated {
  margin-top: 10px;
  font-size: 1.05rem;
  animation: fade-in 1.2s ease-in-out;
}

/* 动画定义 */
@keyframes rotate-icon {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@keyframes fade-in {
  0% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* 响应式调整 */
@media (max-width: 600px) {
  #footer-wrap {
    flex-direction: column;
    text-align: center;
  }

  .footer-left, .footer-right {
    flex: 1 1 auto;
    text-align: center;
  }
}


@keyframes spin {
  0% { transform: rotate(0deg);}
  100% { transform: rotate(360deg);}
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.footer-animated {
  display: inline-block;
  font-weight: bold;
  font-size: 1rem;
  background: linear-gradient(90deg, #ff6ec4, #7873f5, #4ade80);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textGradient 4s ease infinite, typing 4s steps(30, end) 1;
  white-space: nowrap;
  overflow: hidden;
  border-right: 2px solid rgba(0, 0, 0, 0.1);
}

@keyframes textGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}


#card-style {
  position: fixed;
  top: 100px;/* 限制卡片位置 */
  right: 40px;    
  width: 280px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  padding: 27px 28px; /* 限制卡片长，宽度 */
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  opacity: 0;
  transform: translateY(-20px);
  animation: fadeSlideIn 0.8s ease-out forwards;
  transition: all 0.3s ease;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  font-family: "Segoe UI", "PingFang SC", sans-serif;
  user-select: none;
  overflow: hidden;
}

@keyframes fadeSlideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#card-style:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 22px 40px rgba(0, 150, 255, 0.35);/* 限制卡片特效位置，和直径 */
}

#card-div {
  text-align: center;
}

#card-div .avatar img {
  width: 90px; /* 限制卡片头像直径 */
  height: 90px; /* 限制卡片头像直径 */
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  cursor: pointer;
}

#card-div .avatar img:hover {
  transform: scale(1.1) rotate(4deg);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.25);
}

#card-div .name {
  font-size: 1.5em;
  font-weight: 700;
  margin-top: 14px;/* 限制卡片头像和下文的距离 */
  color: #222;
}

#card-div .description {
  font-size: 1em;
  color: #555;
  margin-top: 8px; /* 限制卡片名称和下文的距离 */
  line-height: 1.4;
  user-select: text;
  min-height: 42px;/* 限制卡片名称和下文的距离 */
}

.icon-links {
  margin-top: 16px;
}

.icon-link {
  display: inline-block;
  margin: 0 7px;
  font-size: 22px;
  color: #7a7a7a7a;
  transition: transform 0.3s ease, color 0.3s ease;
  cursor: pointer;
}

.icon-link:hover {
  transform: rotate(20deg) scale(1.25);
  color: #0055ff;
}

.friend-links {
  margin-top: 22px;/* 限制卡片连接和上文的距离 */
  text-align: left;
  max-height: 230px; /* 限制卡片名称能显示的连接长度！ */
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #bbb transparent;
}

.friend-links::-webkit-scrollbar {
  width: 6px;
}

.friend-links::-webkit-scrollbar-thumb {
  background-color: #bbb;
  border-radius: 3px;
}

.friend-links a {
  display: block;
  color: #0077ff;/* 连接的颜色 */
  text-decoration: none;
  margin-bottom: 7px;/* 连接之间的距离 */
  font-size: 14.5px;
  position: relative;
  transition: all 0.3s ease;
  padding-left: 4px;/* 连接的排头距离 */
}

.friend-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;/* 连接线条的粗细 */
  width: 0;
  height: 2px;/* 连接线条的粗细 */
  background: #0071f1;/* 连接线条的颜色 */
  transition: width 0.3s ease;
}

.friend-links a:hover {
  transform: translateX(5px);
  color: #ff4081;/* 连接选择时的颜色 */
}

.friend-links a:hover::after {
  width: 100%;
}

/* 移动端隐藏 */
@media screen and (max-width: 768px) {
  #card-style {
    display: none;
  }
}



#home-head {
display: flex;
height: 100vh;
width: 100vw;
}
#home-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; /* 确保在内容后面 */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#home-head #home-info .info {
align-items: center;
border-radius: 50%;
display: flex;
justify-content: center;
text-align: center;
}
#home-head #home-info .loop:nth-child(1) {
animation: loop1 10s linear infinite;
background: #fff;
border-radius: 38% 62% 63% 37%/41% 44% 56% 59%;
opacity: 0.3;
transform: rotate(30deg);
}
#home-head #home-info .loop:nth-child(2) {
animation: loop2 15s linear infinite;
background: #fff;
border-radius: 38% 62% 63% 37%/41% 44% 56% 59%;
opacity: 0.45;
transform: rotate(60deg);
}
#home-head #home-info .loop:nth-child(3) {
animation: loop3 10s linear infinite;
background: #fff;
border-radius: 38% 62% 63% 37%/41% 44% 56% 59%;
opacity: 0.3;
transform: rotate(90deg);
}
#home-head #home-info .loop:nth-child(4) {
animation: loop4 15s linear infinite;
background: #fff;
border-radius: 38% 62% 63% 37%/41% 44% 56% 59%;
opacity: 0.45;
transform: rotate(120deg);
}
#home-head #home-info,
#w#home-posts {
  margin: auto;
  max-width: 720px;
  padding: 0 15px;
  box-sizing: border-box;
}

#home-posts .page-current {
  align-items: center;
  display: flex;
  font-weight: bold;
  justify-content: center;
  margin-top: 50px;
  text-align: center;
  width: 100%;
}

#home-posts .page-current .current {
  border-radius: 5px;
  color: #da0a51;
  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 a {
  color: #999;
}

#home-posts {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#home-posts .post {
  position: relative;
  width: 100%;
  max-width: 700px;                  /* 限制卡片宽度 */
  background: rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  box-shadow: 0 0 20px #d9d9d980;
  transition: box-shadow 0.25s, transform 0.25s;
  padding: 24px 32px 48px;
  margin-bottom: 40px;
  box-sizing: border-box;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

#home-posts .post-title {
  color: #66afef;
  text-align: center;
  margin-bottom: 15px;
  font-size: 1.8rem;
  font-weight: 700;
}

#home-posts .post .category-and-date {
  color: #5c6b72;
  margin-top: 10px;
  margin-bottom: 20px;
  text-align: center;
  width: 100%;
  font-size: 0.9rem;
}

#home-posts .post .category-and-date .category {
  display: inline-block;
  margin-right: 25px;
}

#home-posts .post .description .content {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  max-height: 6em;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: justify;
}

#home-posts .post-tags {
  text-align: center;
  margin-top: 15px;
  line-height: 1.7;
}

#home-posts .post-tags .tag {
  display: inline-block;
  font-weight: bold;
  margin-right: 10px;
}

#home-posts .post-tags a {
  font-size: 14px;
}

#home-posts .post .go-post {
  background: linear-gradient(120deg, #9abbf7 0%, #ffbbf4 100%);
  border: 0;
  border-radius: 20px 0 0 20px;
  box-shadow: 2px 2px 10px 0 #ffbbf47a;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  padding: 10px 24px;
  position: absolute;
  bottom: 20px;
  right: 20px;
  transition: box-shadow 0.25s ease-out, right 0.25s ease-out;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
}

#home-posts .post .go-post:hover {
  box-shadow: -2px -2px 10px 0 #9abbf77a;
  right: 22px;
}

#home-posts .post:hover {
  box-shadow: 0 0 10px #d9d9d9;
  transform: translate(-3px, -3px);
}

#home-posts-wrap {
  background: transparent;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  margin: auto;
  padding: 20px;
  box-sizing: border-box;
}

#home-posts-wrap,
#archives,
.article,
#footer #footer-wrap {
  box-sizing: border-box;
}

#loading {
align-items: center;
background: #fff;
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 #a3ddfb;
border-radius: 50%;
display: flex;
flex-direction: column;
height: 50vmin;
justify-content: center;
padding: 50px;
text-align: center;
width: 50vmin;
}
#main {
margin-right: calc(100% - 100vw);
}
#menu {
background: #92cafa;
box-shadow: 0 -1px 10px 0 #9e9e9e4d;
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;
}
#menu #desktop-menu {
height: 50px;
}
#menu #desktop-menu .title {
color: #555;
display: inline-block;
margin-left: 60px;
margin-right: 5px;
}
#menu #desktop-menu a {
color: #555;
display: inline-block;
margin-left: 30px;
}
#menu #mobile-menu {
min-height: 50px;
text-align: center;
}
#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: #555;
}
#menu #mobile-menu .title {
color: #555;
cursor: pointer;
z-index: 1003;
}
#menu-curtain {
background: #0003;
height: 100%;
left: 0;
position: fixed;
top: 0;
width: 100%;
z-index: 1001;
}
#menu.hidden {
top: -50px;
}
#menu.menu-color {
background: #0003;
}
#menu.menu-color #desktop-menu a,
#menu.menu-color #mobile-menu a,
#menu.menu-color #mobile-menu .title {
color: #fff;
}
#preview {
align-items: center;
background-color: #fffc;
display: flex;
height: 100vh;
justify-content: center;
left: 0;
position: fixed;
top: 0;
width: 100vw;
z-index: 1005;
}
#preview-content {
box-shadow: 0 0 50px 10px #d9d9d980;
margin: auto;
max-height: 95%;
max-width: 95%;
}
#search-bar {
margin-bottom: 50px;
z-index: 1000;
}
#timeline-wrap {
display: flex;
flex-direction: column-reverse;
}
* {
margin: 0;
padding: 0;
position: relative;
scrollbar-color: #8ab5ff #e6efff;
scrollbar-width: thin;
word-wrap: break-word;
}
.article {
font-size: 15px;
margin: auto;
margin-top: 100px;
padding: 20px;
}
.article .content {
margin: 50px 0;
}
.article .info .date {
color: #5c6b72;
display: inline-block;
margin-right: 10px;
}
.code-content {
font-size: 13px;
line-height: 2;
overflow-x: auto;
overflow-y: auto;
padding: 50px 30px 20px;
white-space: pre;
max-width: 100%;
box-sizing: border-box;
}
.comment iframe,
body::-webkit-scrollbar-track {
border-radius: 0;
}
.content {
transition: opacity 0.25s;
}
.content img,
.content video,
.content audio,
.content iframe {
display: block;
margin: 15px auto;
max-width: 75%;
}
.copycode {
color: #5c6b72;
position: absolute;
right: 0;
top: 0;
}
.copycode i {
padding: 15px;
position: absolute;
right: 0;
top: 0;
transition: transform 0.25s;
}
.copycode.copied i {
transform: scale(1.25);
}
.copycode.copied i:first-child,
.copycode:not(.copied) i:last-child {
opacity: 0;
}
.fade-enter-active,
.fade-leave-active {
transition: opacity 0.3s;
}
.fade-enter-from,
.fade-leave-to {
opacity: 0;
}
.hljs-ln-code {
padding-left: 20px !important;
}
.hljs-ln-numbers {
border-right: 1px solid #ccc;
color: #ccc;
padding-right: 10px !important;
text-align: right;
vertical-align: top;
}
.icon {
color: #5c6b72;
margin-right: 5px;
}
.input {
background: #f6f8fa;
border: 1px solid #d0d7de;
border-radius: 50px;
box-sizing: border-box;
color: #000;
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: #fff;
border-color: #0969da;
box-shadow: 0 0 0 3px #0969da4d;
outline: none;
}
.input:hover {
background: #fff;
}
.into-enter-active {
transition: opacity 0.5s, transform 0.5s;
}
.into-enter-from {
opacity: 0;
transform: scale(1.1);
}
.katex {
white-space: normal !important;
}
.language {
background: linear-gradient(to right, #ed6ea0 0%, #ec8c69 100%);
border-radius: 0 0 10px 10px;
box-shadow: 1px 1px 0.75rem #ed6ea14d;
color: #fff;
font-size: 12px;
font-weight: bold;
left: 30px;
padding: 10px 15px;
position: absolute;
top: 0;
}
.page-num,
.icon-link a,
.friend-link a {
transition: background 0.25s, color 0.25s;
}
.page-num:hover,
.icon-link a:hover,
.friend-link a:hover,
.categories-tags a:hover,
.go-post:hover {
opacity: 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;
}
.timeline {
margin-bottom: 30px;
transition: margin-top 0.5s, opacity 0.3s, visibility 0.3s;
}
.timeline-content {
background: #fff;
border: 1px solid #0002;
border-radius: 3px;
margin-left: 17.5px;
padding: 24px;
transition: box-shadow 0.5s;
}
.timeline-content:hover {
box-shadow: 0 2px 8px #00000017;
}
.timeline-tail {
background: #fff;
border: 2px solid #a5c2f5;
border-radius: 50%;
height: 7px;
position: absolute;
width: 7px;
}
::-webkit-scrollbar {
height: 12px;
width: 12px;
}
::-webkit-scrollbar-thumb {
background: #8ab5ff
linear-gradient(
45deg,
#fff6 25%,
transparent 25%,
transparent 50%,
#fff6 50%,
#fff6 75%,
transparent 75%,
transparent
);
border: 3px solid #e6efff;
border-radius: 100px;
}
::-webkit-scrollbar-track {
background: #e6efff;
border-radius: 100px;
}
::selection {
background-color: #3392ff2a;
color: unset;
}
a {
color: #66afef;
text-decoration: none;
}
a:hover,
.content .copycode:hover {
opacity: 0.8;
}
audio,
button,
iframe,
img,
video,
#home-head,
#menu,
.categories-tags a,
.copycode,
.friend-link a,
.go-post,
.hljs-ln-numbers,
.icon-link a,
.katex,
.language,
.page-current {
user-select: none;
}
b,
strong {
font-weight: bold;
line-height: 2.5;
}
blockquote {
background: #d9e8ff6b;
border-left: 3px solid #1e3e3f;
border-radius: 3px;
margin: 15px 0;
overflow: auto;
padding: 0 15px;
}
body {
background: #f6f8fa;
color: #1e3e3f;
font: 500 14px Lexend, "Noto Sans SC", sans-serif;
overflow-x: hidden;
width: 100%;
}
code {
background: #bddcf76b;
border-radius: 4px;
line-height: 2.5;
padding: 4px 8px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
color: #1e3e3f;
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;
}
mark {
background: #fff13360;
border-radius: 4px;
color: unset;
line-height: 2.5;
padding: 4px 8px;
}
p,
ul,
ol {
line-height: 1.7;
margin: 15px 0;
}
pre {
border: 1px solid #ebeef5;
border-radius: 15px;
box-shadow: 0 2px 12px 0 #0000001a;
margin: 25px 0;
overflow: hidden;
white-space: normal;
}
pre,
code,
.hljs,
.input,
.language {
font-family: "Fira Code", "Noto Sans SC", monospace;
}
table:not(.hljs-ln) {
margin: 15px 0;
}
table:not(.hljs-ln) td:nth-child(even) {
background: #c7e0fb4d;
}
table:not(.hljs-ln) td:nth-child(odd) {
background: #d9e8ff4d;
}
table:not(.hljs-ln) th {
background: #a3ddfb;
}
table:not(.hljs-ln) tr th,
table:not(.hljs-ln) tr td {
border-radius: 3px;
padding: 10px 20px;
}
ul li,
ol li {
margin: 8px 0;
}
@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);
}
}
@media (min-width: 900px) {
#home-head #home-info .info .wrap {
padding: 25px;
}
#home-head #home-info .info .wrap h1 {
font-size: 52px;
font-weight: bold;
margin-bottom: 10px;
}
#home-head #home-info .info .wrap h3 {
font-size: 24px;
margin: 10px 0;
}
#home-head #home-info .info .wrap h5 {
font-size: 16px;
margin: 20px 0;
}
#home-head #home-info .loop {
display: inline-block;
height: 500px;
position: absolute;
width: 500px;
}
#home-head #home-info,
#home-head #home-info .info {
height: 500px;
width: 500px;
}
#home-posts {
margin-right: 50px;
width: 850px;
}
#home-posts .post {
margin-bottom: 25px;
padding: 50px;
}
#home-posts .post .description {
padding: 20px 0;
}
#home-posts-wrap {
max-width: 1200px;
}
#menu #desktop-menu {
display: block;
}
#menu #mobile-menu {
display: none;
}
.article,
#archives,
#footer #footer-wrap {
width: 900px;
}
.home-posts-wrap-no-card #home-posts {
margin: auto;
}
ul,
ol {
padding-left: 40px;
}
}
@media (min-width: 900px) and (max-width: 1200px) {
#home-card {
display: none;
}
#home-posts {
width: 100%;
}
#home-posts-wrap,
#archives {
width: 800px;
}
}
@media (max-width: 900px) {
#home-head #home-info {
height: 350px;
width: 350px;
}
#home-head #home-info .info {
align-items: center;
background: #ffffffa6;
display: flex;
height: 350px;
justify-content: center;
margin: auto;
width: 350px;
}
#home-head #home-info .info .wrap {
padding: 50px;
}
#home-head #home-info .info .wrap h1 {
font-size: 46px;
margin-bottom: 10px;
}
#home-head #home-info .info .wrap h3 {
font-size: 20px;
margin: 10px 0;
}
#home-head #home-info .info .wrap h5 {
font-size: 14px;
margin: 20px 0;
}
#home-head #home-info .loop {
display: none;
height: 350px;
position: absolute;
width: 350px;
}
#home-posts {
margin: auto;
width: 100%;
}
#home-posts .post {
margin-bottom: 30px;
padding: 20px 30px;
}
#home-posts .post .description {
padding: 20px 0;
}
#home-posts .post .post-tags {
padding-right: 69px;
}
#home-posts-wrap,
.article,
#archives,
#footer #footer-wrap {
width: 100%;
}
#menu #desktop-menu,
#home-card {
display: none;
}
#menu #mobile-menu {
display: block;
}
ul,
ol {
padding-left: 20px;
}
}
.datetime {
  margin-top: 12px;
  font-size: 14px;
  color: #444;
  font-family: "Courier New", monospace;
  transition: all 0.3s ease;
}
.article-count {
  margin-top: 8px;
  color: #888;
  font-size: 0.9rem;
  text-align: center;
}
