/* 首页专属样式 */
.hide-scrollbar::-webkit-scrollbar {
  display: none;
}
.hide-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in {
  animation: fadeIn 0.6s ease-out forwards;
}

/* WordPress兼容性适配 */
.shouye-hero-section {
  padding-top: 5rem !important;
}
.shouye-service-card {
  transition: all 0.3s ease;
}
.shouye-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}
.case-filter-btn.active {
  background-color: #1e3a8a !important;
  color: white !important;
}