
/* 自定义首页样式 */
.theme-default-content:not(.custom) {
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}
.page {
  max-width: 100% !important;
  padding: 0 !important;
}
main.page {
  max-width: 100% !important;
}

/* 隐藏侧边栏 */
.sidebar {
  display: none !important;
}

/* Hero区域自定义样式 */
.home-hero {
  background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 50%, #e0f2fe 100%) !important;
  padding: 80px 0 !important;
}
.home-hero .hero-image {
  width: 200px !important;
  height: 200px !important;
  filter: drop-shadow(0 10px 30px rgba(59, 130, 246, 0.2));
  animation: logo-float 6s ease-in-out infinite;
}
@keyframes logo-float {
0%, 100% { transform: translateY(0px) rotate(0deg);
}
33% { transform: translateY(-10px) rotate(1deg);
}
66% { transform: translateY(5px) rotate(-1deg);
}
}

/* 功能卡片样式 */
.features {
  padding: 60px 0 !important;
  background: linear-gradient(180deg, #f0f9ff 0%, #ffffff 100%) !important;
}
.feature-card {
  background: white !important;
  border: 1px solid rgba(148, 163, 184, 0.1) !important;
  border-radius: 16px !important;
  padding: 25px !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04) !important;
  transition: all 0.3s ease !important;
  height: 100% !important;
}
.feature-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08) !important;
  border-color: rgba(59, 130, 246, 0.15) !important;
}
.feature-card .icon {
  font-size: 24px !important;
  margin-bottom: 15px !important;
}
.feature-card h3 {
  font-size: 1.2rem !important;
  font-weight: 600 !important;
  margin-bottom: 10px !important;
  color: #1e293b !important;
}
.feature-card p {
  color: #475569 !important;
  line-height: 1.5 !important;
  font-size: 0.95rem !important;
}

/* 按钮样式 */
.home-hero .action-button {
  padding: 14px 28px !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  border-radius: 8px !important;
  margin: 0 10px 10px 0 !important;
}
.home-hero .action-button.primary {
  background: linear-gradient(135deg, #3b82f6, #6366f1) !important;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3) !important;
}
.home-hero .action-button.primary:hover {
  background: linear-gradient(135deg, #6366f1, #8b5cf6) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4) !important;
}
.home-hero .action-button.secondary {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(100, 116, 139, 0.15) !important;
  color: #475569 !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05) !important;
}
.home-hero .action-button.secondary:hover {
  background: rgba(255, 255, 255, 1) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08) !important;
}

/* 响应式设计 */
@media (max-width: 768px) {
.home-hero {
    padding: 60px 20px !important;
}
.features {
    padding: 40px 20px !important;
}
.home-hero .hero-image {
    width: 150px !important;
    height: 150px !important;
}
}

