.slideshow {
    height: 400px;
    object-fit: cover;
}

/* VuePress 官网样式复刻 */

/* 全局样式重置 */
* {
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  line-height: 1.6;
  color: #2c3e50;
  margin: 0;
  padding: 0;
  -webkit-user-select: none; /* Safari */
  -moz-user-select: none;    /* Firefox */
  -ms-user-select: none;     /* IE10+/Edge */
  user-select: none;         /* Standard */
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 导航栏样式 */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3.6rem;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: flex;
  align-items: center;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}

.navbar-brand {
  display: flex;
  align-items: center;
}

.navbar-brand .navbar-item {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #2c3e50;
  font-weight: 600;
  font-size: 1.3rem;
}

.logo {
  height: 2.2rem;
  margin-right: 0.8rem;
}

.brand-text {
  color: #3eaf7c;
}

.navbar-menu {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: space-between;
}

.navbar-start {
  display: flex;
  align-items: center;
}

.navbar-item {
  position: relative;
  display: flex;
  align-items: center;
}

.navbar-link {
  padding: 0 1.5rem;
  color: #2c3e50;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.3s;
}

.navbar-link:hover {
  color: #3eaf7c;
}

.navbar-item.active .navbar-link {
  color: #3eaf7c;
}

.navbar-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid #e1e4e8;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  padding: 0.5rem 0;
  min-width: 200px;
  display: none;
  z-index: 1001;
}

.dropdown-section {
  padding: 0.5rem 0;
  border-bottom: 1px solid #e1e4e8;
}

.dropdown-section:last-child {
  border-bottom: none;
}

.dropdown-section h4 {
  margin: 0 1rem 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #6a737d;
  text-transform: uppercase;
}

.navbar-dropdown .navbar-item {
  display: block;
  padding: 0.5rem 1rem;
  color: #2c3e50;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background-color 0.3s;
}

.navbar-dropdown .navbar-item:hover {
  background-color: #f6f8fa;
  color: #3eaf7c;
}

.navbar-end {
  display: flex;
  align-items: center;
}

.version-selector,
.language-selector {
  position: relative;
  cursor: pointer;
  padding: 0 1rem;
  font-size: 0.9rem;
  color: #2c3e50;
}

.version-dropdown,
.language-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  border: 1px solid #e1e4e8;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  padding: 0.5rem 0;
  min-width: 150px;
  display: none;
  z-index: 1001;
}

.version-dropdown.is-active,
.language-dropdown.is-active {
  display: block;
}

.version-dropdown a,
.language-dropdown a {
  display: block;
  padding: 0.5rem 1rem;
  color: #2c3e50;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background-color 0.3s;
}

.version-dropdown a:hover,
.language-dropdown a:hover {
  background-color: #f6f8fa;
  color: #3eaf7c;
}

.github-link {
  display: flex;
  align-items: center;
  padding: 0 1rem;
  color: #2c3e50;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s;
}

.github-link:hover {
  color: #3eaf7c;
}

.github-link i {
  margin-right: 0.5rem;
  font-size: 1rem;
}

/* 用户登录状态样式 */
.auth-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.auth-links .divider {
  color: #6a737d;
  font-weight: 300;
}

.navbar-burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.5rem;
}

.navbar-burger span {
  width: 20px;
  height: 2px;
  background-color: #2c3e50;
  margin: 2px 0;
  transition: 0.3s;
}

.navbar-burger.is-active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.navbar-burger.is-active span:nth-child(2) {
  opacity: 0;
}

.navbar-burger.is-active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* 搜索区域样式 - 固定在导航栏下方 */
.search-section {
  position: fixed;
  top: 3.6rem;
  left: 0;
  right: 0;
  background-color: #f8f9fa;
  border-bottom: 1px solid #e1e4e8;
  z-index: 999;
  padding: 1rem 0;
}

.search-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.search-form-large {
  width: 100%;
  max-width: 600px;
}

.search-input-wrapper-large {
  display: flex;
  background: #fff;
  border: 2px solid #e1e4e8;
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.search-input-wrapper-large:focus-within {
  border-color: #3eaf7c;
  box-shadow: 0 0 0 3px rgba(62, 175, 124, 0.1);
}

.search-input-large {
  flex: 1;
  padding: 0.8rem 1rem;
  border: none;
  outline: none;
  font-size: 1rem;
  background: transparent;
}

.search-input-large::placeholder {
  color: #6a737d;
}

.search-button-large {
  padding: 0.8rem 1.5rem;
  background: #3eaf7c;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  transition: background-color 0.3s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.search-button-large:hover {
  background: #2d8f63;
}

.search-button-large i {
  font-size: 0.9rem;
}

/* 搜索信息样式 */
.search-info {
  margin-bottom: 1rem;
}

.search-type {
  color: #6a737d;
  font-size: 0.9rem;
  margin-left: 0.5rem;
}

/* 页面内容区域 - 调整顶部边距以适应固定导航栏和搜索区域 */
.page-content {
  margin-top: 8.6rem; /* 3.6rem (导航栏) + 5rem (搜索区域) */
  padding: 2rem 0;
}

/* Hero区域 - 首页特殊处理 */
.hero {
  margin-top: 8.6rem;
  padding: 4rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  padding: 0.8rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: #3eaf7c;
  color: #fff;
}

.btn-primary:hover {
  background: #2d8f63;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.btn-outline:hover {
  background: #fff;
  color: #3eaf7c;
  transform: translateY(-2px);
}

/* 特性展示样式 */
.features {
  padding: 4rem 0;
  background: #fff;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.feature-card {
  padding: 2rem;
  text-align: center;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #3eaf7c, #42b983);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon i {
  font-size: 2rem;
  color: #fff;
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.feature-card p {
  color: #6a737d;
  line-height: 1.6;
  margin: 0;
}

/* 页脚样式 */
.footer {
  background: #2c3e50;
  color: #fff;
  text-align: center;
  padding: 2rem 0;
  margin-top: 4rem;
}

.footer p {
  margin: 0;
  opacity: 0.8;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .navbar-menu {
    position: fixed;
    top: 3.6rem;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 1rem 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
  }

  .navbar-menu.is-active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .navbar-start {
    flex-direction: column;
    width: 100%;
  }

  .navbar-item {
    width: 100%;
    justify-content: center;
  }

  .navbar-link {
    padding: 1rem 1.5rem;
    width: 100%;
    text-align: center;
  }

  .navbar-dropdown {
    position: static;
    box-shadow: none;
    border: none;
    background: #f8f9fa;
    margin-top: 0.5rem;
  }

  .navbar-item.has-dropdown:hover .navbar-dropdown {
    display: block;
  }

  .navbar-end {
    flex-direction: column;
    width: 100%;
    margin-top: 1rem;
  }

  .version-selector,
  .language-selector {
    width: 100%;
    text-align: center;
    padding: 1rem;
  }

  .auth-links {
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
  }

  .navbar-burger {
    display: flex;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    padding: 1.5rem;
  }

  /* 移动端搜索区域调整 */
  .search-section {
    padding: 0.8rem 0;
  }

  .search-input-wrapper-large {
    flex-direction: column;
    border-radius: 6px;
  }

  .search-input-large {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }

  .search-button-large {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
    justify-content: center;
  }

  .search-button-large span {
    display: none;
  }

  /* 移动端页面内容调整 */
  .page-content {
    margin-top: 7.4rem; /* 3.6rem (导航栏) + 3.8rem (搜索区域) */
  }

  .hero {
    margin-top: 7.4rem;
    padding: 2rem 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero {
    padding: 1.5rem 0;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
  }

  .feature-card {
    padding: 1rem;
  }

  .feature-icon {
    width: 60px;
    height: 60px;
  }

  .feature-icon i {
    font-size: 1.5rem;
  }

  .feature-card h3 {
    font-size: 1.3rem;
  }
}

/* 动画效果 */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content {
  animation: fadeInUp 0.8s ease-out;
}

.feature-card {
  animation: fadeInUp 0.8s ease-out;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }

/* 移动端下拉菜单样式调整 */
@media (max-width: 768px) {
  .navbar-dropdown {
    position: static;
    box-shadow: none;
    border: none;
    background: #f8f9fa;
    margin-top: 0.5rem;
    border-radius: 0;
  }

  .dropdown-section {
    padding: 0.3rem 0;
  }

  .dropdown-section h4 {
    margin: 0 1rem 0.3rem;
    font-size: 0.7rem;
  }

  .navbar-dropdown .navbar-item {
    padding: 0.3rem 1rem;
  }

  .version-dropdown,
  .language-dropdown {
    position: static;
    box-shadow: none;
    border: none;
    background: #f8f9fa;
    margin-top: 0.5rem;
  }

  .version-dropdown a,
  .language-dropdown a {
    padding: 0.3rem 1rem;
  }
}

/* 页面内容样式 */
.page-content {
  background: #fff;
  min-height: calc(100vh - 8.6rem);
}

.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1.5rem;
  text-align: center;
}

.content-body {
  line-height: 1.8;
  color: #2c3e50;
}

.content-body img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  margin: 1rem 0;
}

.content-body h2, .content-body h3, .content-body h4 {
  color: #2c3e50;
  margin: 2rem 0 1rem;
}

.content-body p {
  margin-bottom: 1rem;
}

.content-body a {
  color: #3eaf7c;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}

.content-body a:hover {
  border-bottom-color: #3eaf7c;
}

/* 移动端页面内容调整 */
@media (max-width: 768px) {
  .version-dropdown a,
  .language-dropdown a {
    padding: 0.3rem 1rem;
  }

  .content-wrapper {
    padding: 1rem;
    margin: 0 1rem;
  }

  .page-title {
    font-size: 2rem;
  }

  .content-body {
    font-size: 0.9rem;
  }
}

/* 表单样式 */
.form-wrapper {
  max-width: 500px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #2c3e50;
}

.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 2px solid #e1e4e8;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  background: #fff;
}

.form-control:focus {
  outline: none;
  border-color: #3eaf7c;
  box-shadow: 0 0 0 3px rgba(62, 175, 124, 0.1);
}

.form-note {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  display: none;
}

.form-note.success {
  color: #3eaf7c;
  display: block;
}

.form-note.error {
  color: #e74c3c;
  display: block;
}

.form-group-flex {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
}

.form-group-main {
  flex: 1;
}

.form-group-side {
  flex-shrink: 0;
}

.checkcode-img {
  height: 42px;
  border-radius: 6px;
  cursor: pointer;
}

.form-group-submit {
  text-align: center;
  margin-top: 2rem;
}

.form-link {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.9rem;
}

.form-link a {
  color: #3eaf7c;
  text-decoration: none;
  font-weight: 500;
}

.form-link a:hover {
  text-decoration: underline;
}

/* 面包屑导航 */
.breadcrumb {
  margin-bottom: 2rem;
  padding: 1rem 0;
  border-bottom: 1px solid #e1e4e8;
}

.breadcrumb ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  color: #6a737d;
}

.breadcrumb li:not(:last-child)::after {
  content: '/';
  margin: 0 0.5rem;
  color: #6a737d;
}

.breadcrumb li a {
  color: #3eaf7c;
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumb li a:hover {
  color: #2d8f63;
}

.breadcrumb li.is-active a {
  color: #6a737d;
  cursor: default;
}

/* 文章元信息 */
.article-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1rem 0;
  border-bottom: 1px solid #e1e4e8;
  flex-wrap: wrap;
}

.meta-item {
  display: flex;
  align-items: center;
  color: #6a737d;
  font-size: 0.9rem;
}

.meta-item i {
  margin-right: 0.5rem;
}

/* 文章内容 */
.article-content {
  line-height: 1.8;
  color: #2c3e50;
}

.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4,
.article-content h5,
.article-content h6 {
  color: #2c3e50;
  margin: 2rem 0 1rem;
  font-weight: 600;
}

.article-content h1 {
  font-size: 2.5rem;
  border-bottom: 2px solid #3eaf7c;
  padding-bottom: 0.5rem;
}

.article-content h2 {
  font-size: 2rem;
  border-bottom: 1px solid #e1e4e8;
  padding-bottom: 0.3rem;
}

.article-content h3 {
  font-size: 1.5rem;
}

.article-content p {
  margin-bottom: 1rem;
}

.article-content img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  margin: 1rem 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.article-content a {
  color: #3eaf7c;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}

.article-content a:hover {
  border-bottom-color: #3eaf7c;
}

.article-content blockquote {
  margin: 1.5rem 0;
  padding: 1rem 1.5rem;
  background: #f8f9fa;
  border-left: 4px solid #3eaf7c;
  border-radius: 0 6px 6px 0;
  font-style: italic;
}

.article-content code {
  background: #f1f3f4;
  padding: 0.2rem 0.4rem;
  border-radius: 3px;
  font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
  font-size: 0.9rem;
  color: #e74c3c;
}

.article-content pre {
  background: #2c3e50;
  color: #fff;
  padding: 1rem;
  border-radius: 6px;
  overflow-x: auto;
  margin: 1rem 0;
}

.article-content pre code {
  background: none;
  color: inherit;
  padding: 0;
}

.article-content ul,
.article-content ol {
  margin: 1rem 0;
  padding-left: 2rem;
}

.article-content li {
  margin-bottom: 0.5rem;
}

/* 文章导航 */
.article-navigation {
  margin-top: 3rem;
  padding: 2rem 0;
  border-top: 1px solid #e1e4e8;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.nav-item-half {
  flex: 1;
}

.nav-item-center {
  flex-shrink: 0;
  color: #6a737d;
  font-weight: 500;
}

.nav-item-half.text-right {
  text-align: right;
}

.nav-link-prev, .nav-link-next {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
  border: 2px solid #3eaf7c;
}

.nav-link-prev {
  color: #3eaf7c;
  background: transparent;
}
.nav-link-prev:hover {
  background: #3eaf7c;
  color: #fff;
}

.nav-link-next {
  color: #fff;
  background: #3eaf7c;
}
.nav-link-next:hover {
  background: #2d8f63;
  border-color: #2d8f63;
}

/* 搜索结果页面样式 */
.search-results-header {
  margin-bottom: 2rem;
  text-align: center;
}

.search-results-header .page-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.search-results-header .page-title i {
  color: #3eaf7c;
}

.search-keyword {
  font-size: 1.1rem;
  color: #6a737d;
}

.keyword-highlight {
  color: #3eaf7c;
  font-weight: 600;
  background: rgba(62, 175, 124, 0.1);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.search-results {
  margin-bottom: 3rem;
}

.search-result-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  border: 1px solid #e1e4e8;
  border-radius: 8px;
  margin-bottom: 1rem;
  transition: all 0.3s;
  background: #fff;
}

.search-result-item:hover {
  border-color: #3eaf7c;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.result-content {
  flex: 1;
}

.result-title {
  margin-bottom: 0.5rem;
}

.result-title a {
  color: #2c3e50;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 600;
  transition: color 0.3s;
}

.result-title a:hover {
  color: #3eaf7c;
}

.result-excerpt {
  color: #6a737d;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.result-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.result-meta .meta-item {
  font-size: 0.8rem;
  color: #6a737d;
}

.result-meta .meta-item i {
  margin-right: 0.3rem;
}

.result-image {
  flex-shrink: 0;
}

.result-thumbnail {
  width: 120px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  transition: transform 0.3s;
}

.result-thumbnail:hover {
  transform: scale(1.05);
}

/* 分页样式 */
.pagination-wrapper {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #e1e4e8;
}

.pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.pagination-info {
  font-size: 0.9rem;
  color: #6a737d;
}

.pagination-links {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.pagination-link {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border: 1px solid #e1e4e8;
  border-radius: 6px;
  color: #2c3e50;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s;
  background: #fff;
}

.pagination-link:hover {
  border-color: #3eaf7c;
  color: #3eaf7c;
  background: #f8f9fa;
}

.pagination-link.current {
  background: #3eaf7c;
  color: #fff;
  border-color: #3eaf7c;
}

/* 无搜索结果样式 */
.no-results {
  text-align: center;
  padding: 3rem 0;
}

.no-results-icon {
  font-size: 4rem;
  color: #6a737d;
  margin-bottom: 1rem;
}

.no-results-title {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.no-results-text {
  color: #6a737d;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.no-results-suggestions {
  text-align: left;
  max-width: 500px;
  margin: 0 auto 2rem;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e1e4e8;
}

.no-results-suggestions h3 {
  color: #2c3e50;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.no-results-suggestions ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.no-results-suggestions li {
  padding: 0.5rem 0;
  color: #6a737d;
  border-bottom: 1px solid #e1e4e8;
}

.no-results-suggestions li:last-child {
  border-bottom: none;
}

.no-results-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.no-results-actions .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
  border: 2px solid transparent;
  cursor: pointer;
}

.no-results-actions .btn-primary {
  background: #3eaf7c;
  color: #fff;
}

.no-results-actions .btn-primary:hover {
  background: #2d8f63;
  transform: translateY(-2px);
}

.no-results-actions .btn-outline {
  background: transparent;
  color: #3eaf7c;
  border-color: #3eaf7c;
}

.no-results-actions .btn-outline:hover {
  background: #3eaf7c;
  color: #fff;
  transform: translateY(-2px);
}

/* 移动端搜索结果调整 */
@media (max-width: 768px) {
  .search-result-item {
    flex-direction: column;
    gap: 1rem;
  }

  .result-image {
    align-self: center;
  }

  .result-thumbnail {
    width: 100%;
    height: 150px;
  }

  .result-meta {
    flex-direction: column;
    gap: 0.5rem;
  }

  .pagination-links {
    justify-content: center;
  }

  .pagination-link {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
  }

  .no-results-actions {
    flex-direction: column;
    align-items: center;
  }

  .no-results-actions .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}
