@charset "UTF-8";
/* ========================================
 * 名称：Rocky 主题的列表样式表
 * 版本：1.0
 * 说明：主页样式表首页设计与布局
 * 时间：2026-01-16 14:00
 * ======================================== 
*/

/* 页面样式 */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  background: linear-gradient(180deg, #0a0e13 0%, #0c1117 50%, #0f1419 100%);
  background-attachment: fixed;
  color: #f8f9fa;
  padding-top: 76px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* 容器宽度与首页保持一致 */
.container {
  max-width: 1200px;
}

.page-header {
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #0c1117 100%);
  padding: 3rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
}

.page-header h1 {
  position: relative;
  z-index: 1;
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
}

.page-content {
  padding: 3rem 0;
  min-height: 60vh;
}

.page-content h2 {
  color: #3b82f6;
  font-size: 1.75rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.page-content h3 {
  color: #22d3ee;
  font-size: 1.35rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.page-content p {
  color: rgba(220, 229, 242, 0.85);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.page-content ul, .page-content ol {
  color: rgba(220, 229, 242, 0.85);
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

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

.page-content a {
  color: #3b82f6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-content a:hover {
  color: #22d3ee;
}

.navbar-glass {
  background: rgba(12, 17, 23, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(59, 130, 246, 0.1);
  padding: 1.25rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
  background: linear-gradient(135deg, #3b82f6 0%, #22d3ee 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.35rem;
  font-weight: 700;
}

.nav-link {
  color: rgba(248, 249, 250, 0.8) !important;
  transition: color 0.3s ease;
  font-size: 1.05rem;
}

.nav-link:hover {
  color: #fff !important;
}

.navbar-logo {
  height: 32px;
  width: auto;
  object-fit: contain;
}

.btn-info {
  background: linear-gradient(135deg, #22d3ee 0%, #06b6d4 100%);
  border: none;
  color: #fff;
  padding: 0.6rem 1.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-weight: 600;
}

.btn-info:hover {
  background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 211, 238, 0.4);
}

footer {
  border-top: 1px solid rgba(59, 130, 246, 0.1);
  background: #0a0e13;
  padding: 2rem 0;
  margin-top: 3rem;
}

.footer-link {
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.footer-link:hover {
  color: #3b82f6 !important;
}

.contact-info {
  background: linear-gradient(145deg, #1a2332 0%, #15202e 100%);
  border: 1px solid rgba(59, 130, 246, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.contact-info h3 {
  margin-top: 0;
}

@media (max-width: 768px) {
  .page-header h1 {
    font-size: 1.75rem;
  }
  
  .page-content h2 {
    font-size: 1.5rem;
  }
  
  .page-content h3 {
    font-size: 1.2rem;
  }
  
  .navbar-brand {
    font-size: 1.15rem;
  }
  
  .navbar-logo {
    height: 28px;
  }
}
