@charset "UTF-8";
/*
Theme Name: VIMFS-苹果风
Author: plwd
Version: 1.0.251108
*/
.eeyinfo {
  clear: both;
  display: block;
  border: 1px dashed #666;
  background-color: #EEE;
  padding: 10px;
  margin: 5px 0;
}

.more {
  text-align: center;
}

.more a {
  border: none;
}

.protected .text {
  width: 50%;
}

.post-content a.openfile {
  margin: 5px 15px 5px 0;
  padding: 4px 12px;
  background-color: #666;
  color: #FFF;
  display: inline-block;
  text-decoration: none;
  border-left: 10px solid #1F1F1F;
}

.aligncenter, div.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.alignleft {
  float: left;
}

.alignright {
  float: right;
}

img.alignleft {
  margin: 0 15px 0 0;
}

img.alignright {
  margin: 0 0 0 15px;
}

.hidden {
  display: none !important;
  visibility: hidden;
}

.sr-only {
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.sr-only.focusable:active, .sr-only.focusable:focus {
  clip-path: none;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

.invisible {
  visibility: hidden;
}

/* stylelint-disable no-descending-specificity */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: -apple-system, blinkmacsystemfont, "Segoe UI", roboto, helvetica, arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  font-size: 16px;
  line-height: 1.6;
  color: #1d1d1f;
  background-color: #fff;
  margin: 0;
}

a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus,
[tabindex]:focus {
  outline: 2px solid #007aff;
  outline-offset: 2px;
  border-radius: 4px;
}

@media (prefers-contrast: high) {
  a:focus,
  button:focus,
  input:focus,
  textarea:focus,
  select:focus,
  [tabindex]:focus {
    outline: 3px solid #1d1d1f;
    outline-offset: 2px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #007aff;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: rgb(0, 109.8, 229.5);
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 16px;
  font-weight: 600;
  line-height: 1.3;
}

.container {
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.content-area {
  display: flex;
  gap: 32px;
  padding-top: 32px;
  padding-bottom: 32px;
}

.site-main {
  flex: 1;
  min-width: 0;
}

.site-header {
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: saturate(180%) blur(20px);
  position: sticky;
  top: 0;
  z-index: 10;
  padding: 0 24px;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.site-header__logo {
  flex-shrink: 0;
}
.site-header__logo img {
  height: 32px;
  display: block;
}
.site-header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.user-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
}
.user-actions a {
  color: #6e6e73;
  text-decoration: none;
}
.user-actions a:hover {
  color: #007aff;
}

.site-nav {
  display: flex;
  gap: 8px;
  margin: 0 auto;
}
.site-nav a {
  display: block;
  padding: 8px 16px;
  color: #6e6e73;
  font-weight: 500;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
  position: relative;
}
.site-nav a:hover {
  color: #1d1d1f;
  background-color: #f5f5f7;
}
.site-nav a.current {
  color: #1d1d1f;
  font-weight: 600;
}
.site-nav a.current::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 8px;
  right: 8px;
  height: 2px;
  background-color: #007aff;
  border-radius: 1px;
}

.search-form {
  display: flex;
  overflow: hidden;
  border-radius: 16px;
  background-color: #f5f5f7;
  border: 1px solid transparent;
  transition: border-color 0.2s, background-color 0.2s, box-shadow 0.2s;
  min-width: 220px;
}
.search-form:focus-within {
  border-color: #007aff;
  background-color: #fff;
  box-shadow: 0 0 0 2px rgba(0, 122, 255, 0.2);
}
.search-form .text {
  border: none;
  padding: 16px 16px;
  font-size: 14px;
  width: 100%;
  background-color: transparent;
  color: #1d1d1f;
}
.search-form .text::placeholder {
  color: #86868b;
}
.search-form .text:focus {
  outline: none;
}
.search-form .submit {
  border: none;
  background-color: transparent;
  color: #6e6e73;
  padding: 16px;
  cursor: pointer;
  font-weight: 500;
  transition: color 0.2s;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-form .submit:hover {
  color: #007aff;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  /* stylelint-disable-next-line property-no-deprecated */
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.mobile-nav-toggle {
  display: none;
  background: transparent;
  border: none;
  padding: 8px;
  cursor: pointer;
  z-index: 1001;
}
.mobile-nav-toggle .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #1d1d1f;
  border-radius: 1px;
  transition: transform 0.3s, opacity 0.3s;
}
.mobile-nav-toggle .icon-bar:not(:last-child) {
  margin-bottom: 4px;
}

.is-mobile-menu-open {
  overflow: hidden;
}
.is-mobile-menu-open .mobile-nav-toggle .icon-bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.is-mobile-menu-open .mobile-nav-toggle .icon-bar:nth-child(2) {
  opacity: 0;
}
.is-mobile-menu-open .mobile-nav-toggle .icon-bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}
.is-mobile-menu-open #site-navigation {
  transform: translateX(0);
  visibility: visible;
  opacity: 1;
}

@media (width <= 768px) {
  .site-header__actions,
  .site-nav {
    display: none;
  }
  .mobile-nav-toggle {
    display: block;
  }
  #site-navigation {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transform: translateX(-100%);
    transition: transform 0.3s, opacity 0.3s, visibility 0.3s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
  }
  #site-navigation a {
    font-size: 18px;
    padding: 16px 24px;
  }
}
.site-footer {
  background-color: #f5f5f7;
  padding: 32px 0;
  margin-top: 32px;
  border-top: 1px solid #e8e8ed;
  text-align: center;
  font-size: 14px;
  color: #6e6e73;
}
.site-footer p {
  margin: 0 0 8px;
}
.site-footer p:last-child {
  margin-bottom: 0;
}
.site-footer a {
  color: #6e6e73;
  text-decoration: none;
}
.site-footer a:hover {
  color: #007aff;
}
.site-sidebar {
  width: 300px;
  flex-shrink: 0;
}

.widget {
  margin-bottom: 32px;
  background-color: #fff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04), 0 0 0 1px rgba(0, 0, 0, 0.01);
}
.widget__title {
  font-size: 18px;
  font-weight: 700;
  color: #1d1d1f;
  margin-bottom: 24px;
  padding-bottom: 8px;
  border-bottom: 1px solid #d2d2d7;
}
.widget__list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 16px;
}
.widget__list li {
  padding: 8px 0;
  border-bottom: 1px solid #e8e8ed;
  transition: background-color 0.2s;
}
.widget__list li:last-child {
  border-bottom: none;
}
.widget__list li:hover {
  background-color: #e8e8ed;
}
.widget__list li a {
  color: #6e6e73;
  text-decoration: none;
  display: block;
}
.widget__list li a:hover {
  color: #007aff;
}
.widget__list li span {
  float: right;
  color: #86868b;
}
.widget__list--inline {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* stylelint-disable no-descending-specificity */
.comments-area {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid #e8e8ed;
}
.comments-area__title {
  font-size: 22px;
  margin-bottom: 24px;
}

.comment-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.comment-list .comment-body {
  padding: 24px;
  border: 1px solid #e8e8ed;
  border-radius: 16px;
  margin-bottom: 24px;
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  transition: box-shadow 0.2s;
}
.comment-list .comment-body:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.comment-list .comment-by-author > .comment-body {
  border-color: rgba(0, 122, 255, 0.3);
  background-color: rgba(0, 122, 255, 0.03);
  position: relative;
}
.comment-list .comment-by-author > .comment-body::before {
  content: "作者";
  position: absolute;
  top: -8px;
  left: 16px;
  background: #007aff;
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
}
.comment-list .children {
  list-style: none;
  padding-left: 48px;
  margin-top: 16px;
}
.comment-list .children > .comment {
  position: relative;
}
.comment-list .children > .comment::before {
  content: "";
  position: absolute;
  top: -16px;
  left: -32px;
  width: 32px;
  height: 48px;
  border-left: 2px solid #e8e8ed;
  border-bottom: 2px solid #e8e8ed;
}
.comment-list .comment-author {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
.comment-list .comment-author .avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin-right: 16px;
  border: 2px solid #e8e8ed;
}
.comment-list .comment-author cite {
  font-weight: 700;
  font-style: normal;
  color: #1d1d1f;
}
.comment-list .comment-meta {
  font-size: 14px;
  color: #86868b;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
}
.comment-list .comment-meta a {
  color: inherit;
  text-decoration: none;
}
.comment-list .comment-meta a:hover {
  color: #007aff;
}
.comment-list .comment-content p:last-child {
  margin-bottom: 0;
}
.comment-list .comment-content {
  color: #1d1d1f;
  line-height: 1.6;
}
.comment-list .comment-reply {
  text-align: right;
  font-size: 14px;
  margin-top: 16px;
}
.comment-list .comment-reply a {
  display: inline-flex;
  align-items: center;
  color: #6e6e73;
  text-decoration: none;
  padding: 4px 8px;
  border-radius: 4px;
  transition: background-color 0.2s, color 0.2s;
}
.comment-list .comment-reply a:hover {
  background-color: #f5f5f7;
  color: #007aff;
}

.comment-respond {
  margin-top: 32px;
  background-color: #fff;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04), 0 0 0 1px rgba(0, 0, 0, 0.01);
}
.comment-respond__title {
  font-size: 18px;
  margin-bottom: 24px;
  font-weight: 700;
}

.comment-form .form-group {
  margin-bottom: 24px;
}
.comment-form label {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
}
.comment-form label.required::after {
  content: " *";
  color: #ff3b30;
}
.comment-form .textarea {
  resize: vertical;
  min-height: 120px;
}
.comment-form .text, .comment-form .textarea {
  width: 100%;
  padding: 16px;
  border: 1px solid #d2d2d7;
  border-radius: 8px;
  font-family: -apple-system, blinkmacsystemfont, "Segoe UI", roboto, helvetica, arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  font-size: 16px;
  transition: border-color 0.2s, box-shadow 0.2s;
  background-color: #f5f5f7;
}
.comment-form .text:focus, .comment-form .textarea:focus {
  outline: none;
  border-color: #007aff;
  background-color: #fff;
  box-shadow: none;
}

.form-submit .submit {
  background-color: #007aff;
  color: #fff;
  border: none;
  padding: 16px 32px;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 4px rgba(0, 122, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.form-submit .submit:hover {
  background-color: rgb(0, 109.8, 229.5);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 122, 255, 0.3);
}
.form-submit .submit:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 122, 255, 0.2);
}
.form-submit .submit:disabled {
  background-color: #86868b;
  cursor: not-allowed;
  transform: none;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}
.pagination a, .pagination span {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid #d2d2d7;
  border-radius: 8px;
  color: #6e6e73;
  background-color: #fff;
  transition: background-color 0.2s, color 0.2s;
}
.pagination a:hover {
  background-color: #f5f5f7;
  color: #1d1d1f;
}
.pagination .current a, .pagination .current span {
  border-color: #007aff;
  color: #1d1d1f;
  font-weight: 600;
  background-color: transparent;
}

.loading-spinner {
  display: inline-block;
  width: 32px;
  height: 32px;
  border: 3px solid rgba(0, 122, 255, 0.2);
  border-radius: 50%;
  border-top-color: #007aff;
  animation: spin 1s linear infinite;
}
.loading-spinner--small {
  width: 16px;
  height: 16px;
  border-width: 2px;
}
.loading-spinner--large {
  width: 48px;
  height: 48px;
  border-width: 4px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.post-card {
  background-color: #fff;
  border: 1px solid #e8e8ed;
  border-radius: 16px;
  transition: transform 0.2s, box-shadow 0.2s;
  overflow: hidden;
}
.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.05);
}
.post-card__link {
  display: block;
  padding: 32px;
  height: 100%;
  color: inherit;
  transition: background-color 0.2s;
}
.post-card__link:hover {
  background-color: rgba(0, 122, 255, 0.03);
}
.post-card__title {
  font-size: 18px;
  font-weight: 600;
  color: #1d1d1f;
  margin: 0 0 8px;
  line-height: 1.3;
}
.post-card__date {
  font-size: 14px;
  color: #86868b;
}

.category-overview {
  margin-bottom: 32px;
}
.category-overview__title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
  border-bottom: 2px solid #007aff;
  padding-bottom: 8px;
  display: inline-block;
}
.category-overview__title a {
  color: inherit;
  text-decoration: none;
}

.post__header {
  margin-bottom: 48px;
}

.post__title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
}

.post__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 14px;
  color: #6e6e73;
}
.post__meta .meta-item:not(:last-child)::after {
  content: "·";
  margin: 0 8px;
}
.post__meta a {
  color: #6e6e73;
  transition: color 0.2s;
}
.post__meta a:hover {
  color: #007aff;
}

.post__tags {
  margin-bottom: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.post__tags a {
  display: inline-block;
  background-color: #f5f5f7;
  padding: 4px 16px;
  border-radius: 4px;
  font-size: 14px;
  color: #6e6e73;
  transition: background-color 0.2s, color 0.2s;
}
.post__tags a:hover {
  background-color: #e8e8ed;
  color: #1d1d1f;
}

.post__content {
  line-height: 1.8;
  font-size: 17px;
}
.post__content h1, .post__content h2, .post__content h3, .post__content h4, .post__content h5, .post__content h6 {
  margin-top: 48px;
  margin-bottom: 16px;
  font-weight: 700;
  color: #1d1d1f;
  line-height: 1.3;
}
.post__content h1 {
  font-size: 1.75em;
}
.post__content h2 {
  font-size: 1.5em;
}
.post__content h3 {
  font-size: 1.25em;
}
.post__content p {
  margin-bottom: 24px;
  color: #1d1d1f;
}
.post__content a {
  color: #007aff;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  transition: text-decoration-color 0.2s;
}
.post__content a:hover {
  text-decoration-color: #007aff;
}
.post__content blockquote {
  margin: 32px 0;
  padding: 24px 32px;
  border-left: 4px solid #007aff;
  background-color: #f5f5f7;
  border-radius: 4px;
  font-style: normal;
  font-size: 1.1em;
  color: #1d1d1f;
  position: relative;
}
.post__content blockquote::before {
  content: '"';
  font-size: 3em;
  position: absolute;
  top: -16px;
  left: 16px;
  color: rgba(0, 122, 255, 0.1);
  font-family: serif;
  line-height: 1;
}
.post__content pre {
  background-color: #f5f5f7;
  color: #1d1d1f;
  padding: 32px;
  border-radius: 16px;
  overflow-x: auto;
  font-family: "SF Mono", "Fira Code", "Fira Mono", "Roboto Mono", monospace;
  font-size: 14px;
  border: 1px solid #e8e8ed;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
  margin: 24px 0;
}
.post__content code {
  font-family: "SF Mono", "Fira Code", "Fira Mono", "Roboto Mono", monospace;
  background-color: rgba(0, 122, 255, 0.08);
  color: #007aff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.9em;
  overflow-wrap: break-word;
}
.post__content pre > code {
  background: none;
  padding: 0;
  color: inherit;
  font-size: inherit;
  border-radius: 0;
}
.post__content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 16px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.post__content ul, .post__content ol {
  margin: 24px 0;
  padding-left: 32px;
}
.post__content ul li, .post__content ol li {
  margin-bottom: 8px;
  line-height: 1.6;
}
.post__content hr {
  border: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, #d2d2d7, transparent);
  margin: 32px 0;
}

.post__nav {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid #e8e8ed;
}
.post__nav a {
  display: block;
  max-width: 48%;
  padding: 16px;
  border-radius: 8px;
  border: 1px solid #e8e8ed;
  transition: border-color 0.2s, background-color 0.2s;
}
.post__nav a:hover {
  background-color: #f5f5f7;
  border-color: #d2d2d7;
}

.related-posts {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid #e8e8ed;
}
.related-posts__title {
  font-size: 22px;
  margin-bottom: 24px;
  font-weight: 700;
}

.page-header {
  background-color: #f5f5f7;
  padding: 24px 0;
  border-bottom: 1px solid #e8e8ed;
}

.breadcrumbs {
  font-size: 14px;
  color: #86868b;
  margin-bottom: 8px;
}
.breadcrumbs a {
  color: #6e6e73;
}
.breadcrumbs a:hover {
  color: #1d1d1f;
}
.breadcrumbs span {
  color: #1d1d1f;
  font-weight: 500;
}

.page-description {
  font-size: 18px;
  color: #6e6e73;
  font-weight: 400;
}

/*# sourceMappingURL=style.css.map */
